Example #1
0
 public Robot(Native.Robot obj)
 {
     Position      = new Vector3(obj.position);
     Rotation      = obj.rotation;
     VelocityLeft  = obj.wheel.leftSpeed;
     VelocityRight = obj.wheel.rightSpeed;
 }
Example #2
0
 public OpponentRobot(Native.Robot obj)
 {
     Position = new Vector3(obj.position);
     Rotation = obj.rotation;
 }