Added a clear function.

This commit is contained in:
arookas 2015-12-23 20:21:58 -05:00
parent 0ab5431c5f
commit c4fc1f9f4f

View file

@ -26,6 +26,8 @@ namespace arookas
loops.Pop();
}
public void Clear() { loops.Clear(); }
public bool AddBreak(sunPoint point) { return AddBreak(point, null); }
public bool AddContinue(sunPoint point) { return AddContinue(point, null); }
public bool AddBreak(sunPoint point, string name)