mirror of
https://github.com/kwsch/pkNX.git
synced 2026-03-23 02:34:22 -05:00
12 lines
122 B
C#
12 lines
122 B
C#
namespace pkNX.Structures;
|
|
|
|
public enum CellType
|
|
{
|
|
None,
|
|
Bool,
|
|
Float,
|
|
Character,
|
|
Tag,
|
|
Function,
|
|
}
|