X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/a25c4c508425a98c4aba9b5d72c6e57c985f9da2..c562f8f0fa459970696c9bc2110066e8ebf3bdf2:/src/mapcoord.h diff --git a/src/mapcoord.h b/src/mapcoord.h index 9f274350..1b50eda2 100644 --- a/src/mapcoord.h +++ b/src/mapcoord.h @@ -19,20 +19,22 @@ * */ - #ifndef __MAP_COORD_H #define __MAP_COORD_H #include +G_BEGIN_DECLS + /* common struct to all map types and map layer, to hold info about a * particular tile */ typedef struct { gint x, y; gint z; /* zone or anything else */ - guint scale; + gint scale; } MapCoord; +G_END_DECLS #endif