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

40 lines
489 B
C#

using System.Collections.Generic;
namespace GMAssetCompiler
{
public class GMLError
{
public eErrorKind Kind
{
get;
set;
}
public string Error
{
get;
set;
}
public List<object> Params
{
get;
set;
}
public GMLToken Token
{
get;
set;
}
public GMLError(eErrorKind _kind, string _error, GMLToken _token, params object[] _others)
{
Kind = _kind;
Error = _error;
Token = _token;
Params = new List<object>(_others);
}
}
}