Added overload to variable-symbol constructor

This commit is contained in:
arookas 2016-02-01 20:41:55 -05:00
parent e76205afea
commit 12f8ba2fc6

View file

@ -283,6 +283,8 @@ namespace arookas {
get { return (uint)Index; } get { return (uint)Index; }
} }
public sunVariableSymbol(string name)
: this(name, 0, 0) { }
public sunVariableSymbol(string name, int display, int index) public sunVariableSymbol(string name, int display, int index)
: base(name) { : base(name) {
mDisplay = display; mDisplay = display;