#ifndef _HORSE_H #define _HORSE_H #include "Figure.h" #include "Position.h" class Horse: public Figure { public: Horse(Position pos); virtual std::pair get_moves(); }; #endif