runelite-client: centralize item sprite dimensions

This commit is contained in:
Max Weber
2019-06-17 00:40:52 -06:00
committed by Adam
parent 42d76a3636
commit f59c0be7f3
7 changed files with 31 additions and 9 deletions

View File

@@ -97,4 +97,15 @@ public class Constants
* All game-play actions operate within multiples of this duration.
*/
public static final int GAME_TICK_LENGTH = 600;
/**
* Width of a standard item sprite
*/
public static final int ITEM_SPRITE_WIDTH = 36;
/**
* Height of a standard item sprite
*/
public static final int ITEM_SPRITE_HEIGHT = 32;
}