Exemplo n.º 1
0
 /**
  * Instance constructor.
  */
 public ObjPositionSample(float _x_, float _y_)
 {
     t = VelocityUtils.GetLongMillisecond();
     x = (int)_x_;
     y = (int)_y_;
 }
Exemplo n.º 2
0
 /**
  * Instance constructor.
  */
 public ObjPositionSample(int _x_, int _y_)
 {
     t = VelocityUtils.GetLongMillisecond();
     x = _x_;
     y = _y_;
 }