9ad4667fc6df79878f0da5ab82c77c76b9ceaafd
[apps/native/sample/adventure.git] / inc / map.h
1 #ifndef MOMENT_MAP
2 #define MOMENT_MAP
3
4 #include "city.h"
5
6 typedef struct _city_data_s {
7    city_s ci;
8    Evas_Object *obj;
9    int w, h;
10 } city_data_s;
11
12 Evas_Object *create_momentic_layout(Evas_Object *parent, const char *full_path);
13 Eina_Bool add_city_to_map(int idx, city_s *ci);
14 Eina_Bool remove_city_from_map(int idx);
15
16 #endif