mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-07-03 10:47:39 +00:00
Migrate to std::shared_ptr<GameBase>
This commit is contained in:
parent
44ea0a50a3
commit
bd71371bed
10 changed files with 22 additions and 26 deletions
|
@ -26,5 +26,5 @@ public:
|
|||
GameTab(wxFrame *parent, std::shared_ptr<Game> game);
|
||||
void ApplyPreferences();
|
||||
std::shared_ptr<Game> GetGame() { return (std::shared_ptr<Game>(game)); }
|
||||
void *GetBase() { return (NULL); };
|
||||
std::shared_ptr<GameBase> GetBase() { return (std::shared_ptr<GameBase>(NULL)); };
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue