Exemplo n.º 1
0
 public Packet8Position(TcpClientm d, sbyte id, Vector3 pos, Vector2 rot)
 {
     this.data = d;
     this.id = id;
     this.pos = pos;
     this.rot = rot;
 }
Exemplo n.º 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;
 }
Exemplo n.º 3
0
 public void onPosition(Vector3 pos, Vector2 rot)
 {
     Position = pos;
     Rotation = rot;
 }
Exemplo n.º 4
0
 public void onCBlock(Vector3 pos, byte mod, byte type)
 {
     World.worlds[level].Change(pos, type, mod, (sbyte)Net.id);
 }
Exemplo n.º 5
0
 public Packet6SetBlock(TcpClientm d, Vector3 pos, byte Blocktype)
 {
     this.data = d;
     this.pos = pos;
     this.Blocktype = Blocktype;
 }
Exemplo n.º 6
0
 public Packet4LevelFin(TcpClientm d, Vector3 size)
 {
     this.data = d;
     this.size = size;
 }