Exemplo n.º 1
0
 public FireShellRequest(Guid aId, clientVector3 position, clientQuaternion rotation, clientVector3 velocity)
 {
     TankId = aId;
     pos    = position;
     rot    = rotation;
     vel    = velocity;
 }
Exemplo n.º 2
0
 public FireShellResponse()
 {
     Status = HttpStatusCode.OK;
     pos    = new clientVector3();
     rot    = new clientQuaternion();
     vel    = new clientVector3();
 }
Exemplo n.º 3
0
 public FireShellResponse(Guid aId, clientVector3 position, clientQuaternion rotation, clientVector3 velocity)
 {
     TankId = aId;
     Status = HttpStatusCode.OK;
     pos    = position;
     rot    = rotation;
     vel    = velocity;
 }
Exemplo n.º 4
0
 public FireShellRequest()
 {
     pos = new clientVector3();
     rot = new clientQuaternion();
     vel = new clientVector3();
 }