public void init(GameContainer arg0, StateBasedGame arg1) throws SlickException {
SpriteSheet sheet = new SpriteSheet("data/corphish.png", 60, 60);
Animation anim = new Animation(sheet, 300);
players.add(new PlayerStatus("player1",anim, 30, 30));
selfStatus = players.get(0);
}