#ifndef UNIT_HPP #define UNIT_HPP class Unit { public: Unit(int x, int y); private: // Position int x; int y; }; #endif