move CursorInfo members into public access

This commit is contained in:
Paul Davis 2014-09-10 18:38:30 -04:00
parent 4be1780080
commit 936aa565a0

View file

@ -13,15 +13,15 @@ class CursorInfo
static int load_cursor_info (const std::string& path);
static void drop_cursor_info ();
std::string name;
int x;
int y;
private:
CursorInfo (const std::string& image_name, int hotspot_x, int hotspot_y);
typedef std::map<std::string,CursorInfo*> Infos;
static Infos infos;
std::string name;
int x;
int y;
};
} /* namespace */