ace/Source/ACE.Entity/Enum/MapScope.cs
Mag-nus 4ae02107d6
ACE.Entity.Enum formatting and adding [Flags] where appropriate (#879)
* ACE.Entity.Enum formatting and adding [Flags] where appropriate

This is work I'm doing to prepare ACE.Entity to be the base library for other tools like ACLogView

* Added missing values to PortalBitmask. Also changed the enum from a byte to int (default)
2018-07-18 21:19:11 -05:00

9 lines
160 B
C#

namespace ACE.Entity.Enum
{
public enum MapScope : byte
{
Outdoors = 0,
IndoorsSmall = 1,
IndoorsLarge = 2
}
}