gitignore and changelog link

This commit is contained in:
dani 2023-07-27 04:07:54 +00:00
parent 52dfaea7ed
commit 79e53e094f
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/target /target
/Cargo.lock /Cargo.lock
/meow

View File

@ -3,6 +3,8 @@
//! # Game Skunk Advance //! # Game Skunk Advance
//! Game development library modelled after an imaginary console //! Game development library modelled after an imaginary console
//! //!
//! [Changelog](https://git.danitheskunk.com/DaniTheSkunk/gsa/src/branch/master/CHANGLOG.md)
//!
//! ## Specs //! ## Specs
//! - Resolution: 304x176 (19x11 tiles) //! - Resolution: 304x176 (19x11 tiles)
//! - Colors: 256 (indexed out of a possible 24-bit) //! - Colors: 256 (indexed out of a possible 24-bit)
@ -57,7 +59,7 @@ pub const SCREEN_HEIGHT: usize = 176;
pub const BACKGROUND_MAX_SIZE: usize = 1024; pub const BACKGROUND_MAX_SIZE: usize = 1024;
/// Tile considered empty (never drawn even if has contents) /// Tile considered empty (never drawn even if has contents)
pub const EMPTY_TILE: u16 = 0xffff pub const EMPTY_TILE: u16 = 0xffff;
/// Tile id of bold default font /// Tile id of bold default font
pub const FONT_BOLD: u16 = 0xf000; pub const FONT_BOLD: u16 = 0xf000;