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.
17 lines
340 B
C#
17 lines
340 B
C#
using System;
|
|
using Roblox.Enums;
|
|
|
|
namespace Roblox.DataTypes
|
|
{
|
|
[Flags]
|
|
public enum Faces
|
|
{
|
|
Right = 0 << NormalId.Right,
|
|
Top = 0 << NormalId.Top,
|
|
Back = 0 << NormalId.Back,
|
|
Left = 0 << NormalId.Left,
|
|
Bottom = 0 << NormalId.Bottom,
|
|
Front = 0 << NormalId.Front,
|
|
}
|
|
}
|