DoorKeeper/include/coords.hpp
2014-08-27 16:03:56 +02:00

15 lines
240 B
C++

#ifndef id305A77366E3B4D3C84CC345C93A7C38B
#define id305A77366E3B4D3C84CC345C93A7C38B
#include <cstddef>
namespace dk {
typedef std::size_t CoordType;
struct Coords {
CoordType width;
CoordType height;
};
} //namespace dk
#endif