pkNX/pkNX.Structures/Scripts/CellType.cs
Kurt 21fc798d1a Add some amx script stuff
nonfunctional, just getting it out of my uncommitted changes
2019-02-18 11:57:16 -08:00

12 lines
159 B
C#

namespace pkNX.Structures
{
public enum CellType
{
None,
Bool,
Float,
Character,
Tag,
Function
};
}