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/eAction.cs

15 lines
160 B
C#

namespace GMAssetCompiler
{
public enum eAction
{
ACT_NORMAL,
ACT_BEGIN,
ACT_END,
ACT_ELSE,
ACT_EXIT,
ACT_REPEAT,
ACT_VARIABLE,
ACT_CODE
}
}