10 lines
162 B
C#
10 lines
162 B
C#
|
namespace RobloxFiles.DataTypes
|
|||
|
{
|
|||
|
public struct EulerAngles
|
|||
|
{
|
|||
|
public float Yaw;
|
|||
|
public float Pitch;
|
|||
|
public float Roll;
|
|||
|
}
|
|||
|
}
|