Beispiel #1
0
 public Packet8Position(TcpClientm d, sbyte id, Vector3 pos, Vector2 rot)
 {
     this.data = d;
     this.id = id;
     this.pos = pos;
     this.rot = rot;
 }
Beispiel #2
0
 public Packet7Spawn(TcpClientm d, sbyte id, string name, Vector3 pos, Vector2 rot)
 {
     this.data = d;
     this.id = id;
     this.name = name;
     this.pos = pos;
     this.rot = rot;
 }
Beispiel #3
0
 public void onPosition(Vector3 pos, Vector2 rot)
 {
     Position = pos;
     Rotation = rot;
 }