cgeditor/examples/wxWidgets/MyHalfMove.hpp

19 lines
394 B
C++
Raw Normal View History

2023-01-19 13:06:36 +01:00
#pragma once
2022-02-12 19:13:34 +01:00
#include "CGEditor.hpp"
/**
* @brief Create your custom half move class
*
* The implementation of the class should give you
* an overview of how to keep your move sync with the one of CGEditor
*
*/
2023-01-19 13:06:36 +01:00
class MyHalfMove : public CMI::HalfMove {
2022-02-12 19:13:34 +01:00
public:
MyHalfMove(std::string move);
};
/// @brief Build the example game to use in the editor
MyHalfMove *BuildExampleGame();