|
|
@ -20,12 +20,12 @@ class GUI { |
|
|
|
|
|
|
|
|
|
|
|
GUI(); |
|
|
|
GUI(); |
|
|
|
|
|
|
|
|
|
|
|
// FOUND BUG: adding this found that I was accidentally copying the gui, really it shouldn't be copyable
|
|
|
|
// prevent copy
|
|
|
|
GUI(GUI &g) = delete; |
|
|
|
GUI(GUI &g) = delete; |
|
|
|
|
|
|
|
|
|
|
|
void output(const string msg); |
|
|
|
void output(const string msg); |
|
|
|
|
|
|
|
|
|
|
|
int main_loop(GameEngine &game, Builder &builder); |
|
|
|
void main_loop(SFMLBackend &backend); |
|
|
|
|
|
|
|
|
|
|
|
void build_works(); |
|
|
|
void build_works(); |
|
|
|
void build_failed(bool play_sound, const string &command); |
|
|
|
void build_failed(bool play_sound, const string &command); |
|
|
|