Add missing virtual destructor.

This commit is contained in:
Matt 2018-12-06 07:09:29 +01:00
parent 000a9694f9
commit b573d5ddaa
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,8 @@ namespace OpenRCT2
interface IReplayManager
{
public:
virtual ~IReplayManager() = default;
virtual void Update() = 0;
virtual bool IsReplaying() const = 0;