Package org.moparscape.msc.gs.model.definition.entity

Examples of org.moparscape.msc.gs.model.definition.entity.GameObjectLoc


    super.setID(loc.id);
    super.setLocation(Point.location(loc.x, loc.y));
  }

  public GameObject(Point location, int id, int direction, int type) {
    this(new GameObjectLoc(id, location.getX(), location.getY(), direction,
        type));
  }
View Full Code Here

TOP

Related Classes of org.moparscape.msc.gs.model.definition.entity.GameObjectLoc

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.