Roblox-File-Format/DataTypes/Faces.cs
CloneTrooper1019 795018e243 Switch root namespace to "RobloxFiles"
In case there are any future libraries written for Roblox in C#, I want to avoid running into any namespace collisions. Its best to keep everything pertaining to this project nested in its own unique namespace.
2019-02-01 11:19:20 -06:00

17 lines
350 B
C#

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,
}
}