Migrate to std::shared_ptr<Game>

This commit is contained in:
Loic Guegan 2022-02-28 20:16:57 +01:00
parent 4c959fe12e
commit 44ea0a50a3
16 changed files with 44 additions and 49 deletions

View file

@ -18,7 +18,7 @@ public:
EngineTab(wxWindow *parent, std::string name);
~EngineTab();
void ApplyPreferences() {}
void *GetGame() { return (NULL); }
std::shared_ptr<Game> GetGame() { return (std::shared_ptr<Game>(NULL)); }
void *GetBase() { return (NULL); }
void OnSave(wxCommandEvent &event);
void OnDelete(wxCommandEvent &event);