Roblox-File-Format/DataTypes/Axes.cs
CloneTrooper1019 9cfd5b2211 Initial commit.
There's a lot of code at play here, so I haven't tested it yet.
A good chunk of the components are available though.
2019-01-25 18:39:37 -06:00

14 lines
189 B
C#

using System;
using Roblox.Enums;
namespace Roblox.DataTypes
{
[Flags]
public enum Axes
{
X = 0 << Axis.X,
Y = 0 << Axis.Y,
Z = 0 << Axis.Z,
}
}