Fix rendering issue
This commit is contained in:
parent
f3bce99120
commit
ef784c2dbc
9 changed files with 28 additions and 25 deletions
|
@ -23,7 +23,8 @@ unknownImage = "unknown.png"
|
|||
allEntities :: [(String, FilePath)]
|
||||
allEntities = [
|
||||
("player", "player.png"),
|
||||
("door", "door.png")
|
||||
("devil", "devil.png" ),
|
||||
("door", "door.png")
|
||||
]
|
||||
|
||||
allEnvironment :: [(String, FilePath)]
|
||||
|
@ -39,7 +40,9 @@ allEnvironment = [
|
|||
allItems :: [(String, FilePath)]
|
||||
allItems = [
|
||||
("dagger", "dagger.png"),
|
||||
("key", "key.png" )
|
||||
("key", "key.png" ),
|
||||
("potion", "potion.png"),
|
||||
("sword", "sword.png" )
|
||||
]
|
||||
|
||||
allGui :: [(String, FilePath)]
|
||||
|
|
Reference in a new issue