From bb72a2d81cf7e4e6e9d80af4b273d25680b40bd1 Mon Sep 17 00:00:00 2001 From: Turo Lamminen Date: Tue, 26 Jan 2021 13:40:44 +0200 Subject: [PATCH] Add idGameEditBase base class for idGameEdit --- neo/framework/Game.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/neo/framework/Game.h b/neo/framework/Game.h index af64d2c8..6127db6f 100644 --- a/neo/framework/Game.h +++ b/neo/framework/Game.h @@ -239,8 +239,14 @@ class idProgram; class idInterpreter; typedef struct prstack_s prstack_t; -// FIXME: this interface needs to be reworked but it properly separates code for the time being -class idGameEdit { + +class idGameEditBase { +public: + virtual ~idGameEditBase( void ) {} +}; + + +class idGameEdit : public idGameEditBase { public: virtual ~idGameEdit( void ) {}