blob: 15d138808751d6201855f932ce37b072e2da0e31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "Command.h"
class ToggleMuseumPauseCommand : public Command {
using Command::Command;
public:
virtual void toggle();
virtual void set(bool paused);
};
|