Roblox-File-Format/DataTypes/Faces.cs

17 lines
350 B
C#
Raw Permalink Normal View History

using System;
using RobloxFiles.Enums;
namespace RobloxFiles.DataTypes
{
[Flags]
public enum Faces
{
Right = 1 << NormalId.Right,
Top = 1 << NormalId.Top,
Back = 1 << NormalId.Back,
Left = 1 << NormalId.Left,
Bottom = 1 << NormalId.Bottom,
Front = 1 << NormalId.Front,
}
}