2019-01-26 00:39:37 +00:00
|
|
|
|
using System;
|
2019-02-01 17:19:20 +00:00
|
|
|
|
using RobloxFiles.Enums;
|
2019-01-26 00:39:37 +00:00
|
|
|
|
|
2019-02-01 17:19:20 +00:00
|
|
|
|
namespace RobloxFiles.DataTypes
|
2019-01-26 00:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
[Flags]
|
|
|
|
|
public enum Axes
|
|
|
|
|
{
|
2019-01-30 06:36:56 +00:00
|
|
|
|
X = 1 << Axis.X,
|
|
|
|
|
Y = 1 << Axis.Y,
|
|
|
|
|
Z = 1 << Axis.Z,
|
2019-01-26 00:39:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|