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

48 lines
399 B
C#

namespace GMAssetCompiler
{
public class GMLFunction
{
public string Name
{
get;
set;
}
public int Id
{
get;
set;
}
public int NumArgs7
{
get;
set;
}
public int NumArgs8
{
get;
set;
}
public bool Pro
{
get;
set;
}
public bool InstanceFirstParam
{
get;
set;
}
public bool OtherSecondParam
{
get;
set;
}
}
}