UnitPosition.java :  » Game » warlordandroid » com » wonderplay » warlord » module » combat » Android Open Source

Android Open Source » Game » warlordandroid 
warlordandroid » com » wonderplay » warlord » module » combat » UnitPosition.java
package com.wonderplay.warlord.module.combat;

public class UnitPosition {
  int x;
  int y;
  
  public UnitPosition(int x, int y){
    this.x = x;
    this.y = y;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.