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

24 lines
306 B
C#

namespace GMAssetCompiler
{
public enum eArgTypes
{
ARG_CONSTANT = -1,
ARG_EXPRESSION,
ARG_STRING,
ARG_STRINGEXP,
ARG_BOOLEAN,
ARG_MENU,
ARG_SPRITE,
ARG_SOUND,
ARG_BACKGROUND,
ARG_PATH,
ARG_SCRIPT,
ARG_OBJECT,
ARG_ROOM,
ARG_FONTR,
ARG_COLOR,
ARG_TIMELINE,
ARG_FONT
}
}