diff --git a/Assets/Cryville/Common/Pdt/PdtInternalType.cs b/Assets/Cryville/Common/Pdt/PdtInternalType.cs index 4cca633..3e9ded1 100644 --- a/Assets/Cryville/Common/Pdt/PdtInternalType.cs +++ b/Assets/Cryville/Common/Pdt/PdtInternalType.cs @@ -3,12 +3,19 @@ /// The identifiers of the internal types of PDT. /// public static class PdtInternalType { - internal readonly static int Error = 0x00525245; + /// + /// Error type. + /// + public readonly static int Error = 0x00525245; /// /// Array of a same variable-length type, with a suffix indicating the element count and the element type. /// public readonly static int Array = 0x00525241; /// + /// Null type. + /// + public readonly static int Null = 0x4c4c554e; + /// /// IEEE 754 32-bit floating-point number. /// public readonly static int Number = 0x004d554e;