Added RemoveAt function

This commit is contained in:
arookas 2016-02-01 15:50:56 -05:00
parent db6739be42
commit dc559130bf

View file

@ -43,6 +43,9 @@ namespace arookas {
}
mSymbols.Remove(symbol);
}
public void RemoveAt(int index) {
mSymbols.RemoveAt(index);
}
public void Clear() {
mSymbols.Clear();
}