forked from mirrors/NBTExplorer
11 lines
175 B
C#
11 lines
175 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Substrate
|
|||
|
{
|
|||
|
public class Orientation
|
|||
|
{
|
|||
|
public double Pitch { get; set; }
|
|||
|
public double Yaw { get; set; }
|
|||
|
}
|
|||
|
}
|