mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* 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)
9 lines
160 B
C#
9 lines
160 B
C#
namespace ACE.Entity.Enum
|
|
{
|
|
public enum MapScope : byte
|
|
{
|
|
Outdoors = 0,
|
|
IndoorsSmall = 1,
|
|
IndoorsLarge = 2
|
|
}
|
|
}
|