forked from mirrors/NBTExplorer
Also missing files
This commit is contained in:
parent
ad3f3d336d
commit
6109758896
2 changed files with 21 additions and 0 deletions
10
Substrate/SubstrateCS/Source/Orientation.cs
Normal file
10
Substrate/SubstrateCS/Source/Orientation.cs
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Substrate
|
||||||
|
{
|
||||||
|
public class Orientation
|
||||||
|
{
|
||||||
|
public double Pitch { get; set; }
|
||||||
|
public double Yaw { get; set; }
|
||||||
|
}
|
||||||
|
}
|
11
Substrate/SubstrateCS/Source/Vector.cs
Normal file
11
Substrate/SubstrateCS/Source/Vector.cs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Substrate
|
||||||
|
{
|
||||||
|
public class Vector3
|
||||||
|
{
|
||||||
|
public double X { get; set; }
|
||||||
|
public double Y { get; set; }
|
||||||
|
public double Z { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue