cgeditor/examples/wxWidgets/MyHalfMove.hpp
2023-01-19 13:06:36 +01:00

19 lines
No EOL
394 B
C++

#pragma once
#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
*
*/
class MyHalfMove : public CMI::HalfMove {
public:
MyHalfMove(std::string move);
};
/// @brief Build the example game to use in the editor
MyHalfMove *BuildExampleGame();