This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
chovy-gm/GMAssetCompiler/eVM_Type.cs

15 lines
204 B
C#

namespace GMAssetCompiler
{
public enum eVM_Type
{
eVMT_Error = 0xF,
eVMT_Double = 0,
eVMT_Float = 1,
eVMT_Int = 2,
eVMT_Long = 3,
eVMT_Bool = 4,
eVMT_Variable = 5,
eVMT_String = 6
}
}