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
1 changed files with 2 additions and 0 deletions

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() {};
};