diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-25 15:29:04 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-25 15:29:04 +0100 |
| commit | 3b6e7d39cf2d03f2e43c249ece6da32f1f8030a7 (patch) | |
| tree | 4ae10cf81fc75264f59b5e991b1beeae66b3fea4 /src/base_tab | |
| parent | 98488e899a750703562d868d734251cfe032e294 (diff) | |
Prepare API for adding games to database
Diffstat (limited to 'src/base_tab')
| -rw-r--r-- | src/base_tab/BaseTab.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/base_tab/BaseTab.hpp b/src/base_tab/BaseTab.hpp index f58e182..a283975 100644 --- a/src/base_tab/BaseTab.hpp +++ b/src/base_tab/BaseTab.hpp @@ -11,7 +11,7 @@ wxDECLARE_EVENT(REFRESH_TAB_TITLE, wxCommandEvent); class BaseTab : public BasePanelBF, public TabInfos { GameBase *base; std::vector<std::uint32_t> deleted; - std::vector<Game*> edited; + std::vector<Game *> edited; std::string base_file; public: @@ -22,4 +22,6 @@ public: void OnSave(wxCommandEvent &event); void OnExport(wxCommandEvent &event); void OnOpenGame(wxListEvent &event); + void *GetGame() { return (NULL); } + void *GetBase() { return (base); }; };
\ No newline at end of file |
