mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-18 03:42:02 +00:00
11 lines
256 B
C++
11 lines
256 B
C++
![]() |
#include "ochess.hpp"
|
||
|
|
||
|
typedef std::string CType;
|
||
|
|
||
|
class GameListManager {
|
||
|
wxListCtrl *game_list;
|
||
|
long game_counter;
|
||
|
public:
|
||
|
GameListManager(wxListCtrl *game_list);
|
||
|
void AddGame(CType W,CType B,CType Evt,CType Rnd, CType Res, CType Eco);
|
||
|
};
|