Skip to content

Commit

Permalink
Move SpriteWidth const to its own declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
elgopher committed Aug 13, 2023
1 parent af6e197 commit 9c29c3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sprite_sheet.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import (
)

const (
SpriteWidth, SpriteHeight = 8, 8
SpriteHeight = 8
SpriteWidth = 8
)

var sprSheet = newSpriteSheet(defaultSpriteSheetWidth, defaultSpriteSheetHeight)
Expand Down

0 comments on commit 9c29c3b

Please sign in to comment.