add rock asset

pull/1/head
Valerie 2022-05-21 06:32:54 -04:00
parent bec5cca553
commit ce80c4945d
2 changed files with 2 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -27,6 +27,7 @@ public class Assets {
public static final Sprite[] defaultTerrain;
public static final Sprite pawn;
public static final Sprite tree;
public static final Sprite rocks;
public static final SimpleShader flat;
@ -44,6 +45,7 @@ public class Assets {
pawn = new Sprite(atlas, 48, 88, 8, 8);
tree = new Sprite(atlas, 64, 64, 24, 24);
rocks = new Sprite(atlas, 64, 104, 8, 8);
Map<Character, Sprite> charset = new HashMap<Character, Sprite>();