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