Пример #1
0
 /**
  * Instance constructor.
  */
 public ObjPositionSample(float _x_, float _y_)
 {
     t = VelocityUtils.GetLongMillisecond();
     x = (int)_x_;
     y = (int)_y_;
 }
Пример #2
0
 /**
  * Instance constructor.
  */
 public ObjPositionSample(int _x_, int _y_)
 {
     t = VelocityUtils.GetLongMillisecond();
     x = _x_;
     y = _y_;
 }