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

48 lines
383 B
C#

namespace GMAssetCompiler
{
public class GMLVariable
{
public string Name
{
get;
set;
}
public string setFunction
{
get;
set;
}
public string getFunction
{
get;
set;
}
public int Id
{
get;
set;
}
public bool Get
{
get;
set;
}
public bool Set
{
get;
set;
}
public bool Pro
{
get;
set;
}
}
}