diff --git a/Man.h b/Man.h new file mode 100644 index 0000000..ed35e09 --- /dev/null +++ b/Man.h @@ -0,0 +1,12 @@ +#pragma once +#include"Chess.h" +class Man +{ +public: + void init(Chess* chess); + void go(); +private: + Chess *chess; +}; + + \ No newline at end of file