mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-06 10:06:27 +02:00
19 lines
No EOL
394 B
C++
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(); |