diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-22 19:55:53 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-22 19:55:53 +0200 |
commit | 3e1b0eb968d90f1ba5163b220c4e39dd7fd1e51b (patch) | |
tree | 2f9dcb8b7ac085514913a1ad114a5275978f95fd /CycleCollisionMethodCommand.h | |
parent | 99d7d1695fec28208e19b34bc754dff5dd1e5642 (diff) |
finish collision checking implementation
Diffstat (limited to 'CycleCollisionMethodCommand.h')
-rw-r--r-- | CycleCollisionMethodCommand.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/CycleCollisionMethodCommand.h b/CycleCollisionMethodCommand.h new file mode 100644 index 0000000..1caee53 --- /dev/null +++ b/CycleCollisionMethodCommand.h @@ -0,0 +1,17 @@ +#pragma once + +#include "Command.h" + +class Museum; + +class CycleCollisionMethodCommand : public Command { +public: + CycleCollisionMethodCommand(Museum & m); + +public: + virtual void execute(); + +private: + Museum & museum; +}; + |