Package games.mapacman.common

Examples of games.mapacman.common.EatenSign


   
  }

  private void killGhost(RPObject object) {
    world.getStats().add("killed Ghost",1);
    EatenSign sign = new EatenSign(object.getInt("x"),object.getInt("y"),this);
    EatenSigns.add(sign)
    world.add(sign.getRPObject());
    respawnMovable(object);
  }
View Full Code Here


    respawnMovable(object);
   
    object.put("dir",consts.DIR_NONE);
    world.modify(object);
   
    EatenSign sign = new EatenSign(x,y,this);
    EatenSigns.add(sign);
    world.add(sign.getRPObject());
  }
View Full Code Here

public Sprite getKillSprite(int i) {
  return sprite_EatenSprite.get(i);
}
public void addEatenSign(RPObject sign)
{
  EatenSigns.add(new EatenSign(sign));
}
View Full Code Here

TOP

Related Classes of games.mapacman.common.EatenSign

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.