Exemplo n.º 1
0
 public PlayerClass()
 {
     name = "";
     stance = 0;
     onGround = true;
     position = new Vector3D(15, 68, 15);
     customerVariables = new Dictionary<string, object>();
     CurrentSlot = 0;
 }
Exemplo n.º 2
0
 public Vector3D Round(Vector3D v1)
 {
     return new Vector3D(Math.Round(v1.X),
                         Math.Round(v1.Y),
                         Math.Round(v1.Z));
 }
Exemplo n.º 3
0
 public Vector3D Abs(Vector3D v1)
 {
     return new Vector3D(Math.Abs(v1.X),
                         Math.Abs(v1.Y),
                         Math.Abs(v1.Z));
 }