GUI: add option to add more systems

This commit is contained in:
tildearrow 2022-01-08 18:18:23 -05:00
parent e961cf79ca
commit c43cc0ae80
3 changed files with 53 additions and 4 deletions

View file

@ -402,10 +402,10 @@ class DivEngine {
void changeSystem(int index, DivSystem which);
// add system
void addSystem(DivSystem which);
bool addSystem(DivSystem which);
// remove system
void removeSystem(int index);
bool removeSystem(int index);
// get last error
String getLastError();