Added RemoveAt function
This commit is contained in:
parent
db6739be42
commit
dc559130bf
1 changed files with 3 additions and 0 deletions
|
@ -43,6 +43,9 @@ namespace arookas {
|
|||
}
|
||||
mSymbols.Remove(symbol);
|
||||
}
|
||||
public void RemoveAt(int index) {
|
||||
mSymbols.RemoveAt(index);
|
||||
}
|
||||
public void Clear() {
|
||||
mSymbols.Clear();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue