added quarry, fixes to bed and rock

world-object-unification-project
ashe 2023-01-05 08:29:20 -05:00
parent afba135b7e
commit 41e08488a9
2 changed files with 2 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -43,6 +43,7 @@ public class Assets {
public static final Sprite bigRock;
public static final Sprite lilPickaxe;
public static final Sprite testTile;
public static final Sprite quarry;
public static final SimpleShader flat;
@ -89,6 +90,7 @@ public class Assets {
bigRock = new Sprite(atlas, 16, 104, 8, 8);
lilPickaxe = new Sprite(atlas, 8, 120, 16, 16);
testTile = new Sprite(atlas, 16, 16, 64, 112);
quarry = new Sprite(atlas, 88, 64, 24, 24);
Map<Character, Sprite> charset = new HashMap<Character, Sprite>();