WoWblip.java :  » Mobile » wowmobile » wow » Java Open Source

Java Open Source » Mobile » wowmobile 
wowmobile » wow » WoWblip.java
// World of Warcraft Mobile
//
// A blip on a (mini)map

package wow;

public class WoWblip extends WoWguid {

    public double X;
    public double Y;
    public double Z;
    public int color;

    public WoWblip(long uid, int clr) {
  super(uid);
  X = 0;
  Y = 0;
  Z = 0;
  color = clr;
    }

}
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.