gitignore and changelog link
This commit is contained in:
parent
52dfaea7ed
commit
79e53e094f
|
@ -1,2 +1,3 @@
|
|||
/target
|
||||
/Cargo.lock
|
||||
/meow
|
|
@ -3,6 +3,8 @@
|
|||
//! # Game Skunk Advance
|
||||
//! Game development library modelled after an imaginary console
|
||||
//!
|
||||
//! [Changelog](https://git.danitheskunk.com/DaniTheSkunk/gsa/src/branch/master/CHANGLOG.md)
|
||||
//!
|
||||
//! ## Specs
|
||||
//! - Resolution: 304x176 (19x11 tiles)
|
||||
//! - 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;
|
||||
|
||||
/// 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
|
||||
pub const FONT_BOLD: u16 = 0xf000;
|
||||
|
|
Loading…
Reference in New Issue