1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

Add required virtual destructor to IGameAction

This commit is contained in:
Michał Janiszewski
2017-07-14 09:17:42 +02:00
committed by Michał Janiszewski
parent f20a6863cd
commit 2aa7924b30

View File

@@ -108,4 +108,6 @@ public:
* Apply the game action and change the game state.
*/
virtual GameActionResult Execute(uint32 flags = 0) const abstract;
virtual ~IGameAction() {};
};