X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fcommon%2Fyx_uint16.h;fp=src%2Fcommon%2Fyx_uint16.h;h=0000000000000000000000000000000000000000;hb=0438f2fc5df337e4264103a86c1765ace9c6565a;hp=05cf29e9238163d8c5425171afcac7e06ab48f18;hpb=7433f56ec2c6cc51bc497e3c0c67d2fe3e6ab64a;p=plomrogue diff --git a/src/common/yx_uint16.h b/src/common/yx_uint16.h deleted file mode 100644 index 05cf29e..0000000 --- a/src/common/yx_uint16.h +++ /dev/null @@ -1,22 +0,0 @@ -/* yx_uint16.h - * - * Used for window / screen maps and game map size. - */ - -#ifndef YX_UINT16_H -#define YX_UINT16_H - -#include /* for uint16_t */ - - - -/* Coordinates for maps of max. 65536x65536 cells. */ -struct yx_uint16 -{ - uint16_t y; - uint16_t x; -}; - - - -#endif