Package org.jpacman.framework.model.IBoardInspector

Examples of org.jpacman.framework.model.IBoardInspector.SpriteType


    return new Rectangle(loc, dim);
  }
 
 
  private Color spriteColor(int x, int y) {
    SpriteType st = boardInspector.spriteTypeAt(x, y);
    Color c = Color.yellow;
    switch (st) {
    case GHOST:
      c = Color.blue;
      break;
View Full Code Here

TOP

Related Classes of org.jpacman.framework.model.IBoardInspector.SpriteType

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.