mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-16 14:46:43 -05:00
12 lines
159 B
C#
12 lines
159 B
C#
namespace pkNX.Structures
|
|
{
|
|
public enum CellType
|
|
{
|
|
None,
|
|
Bool,
|
|
Float,
|
|
Character,
|
|
Tag,
|
|
Function
|
|
};
|
|
} |