9cfd5b2211
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.
14 lines
189 B
C#
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,
|
|
}
|
|
}
|