]> git.lizzy.rs Git - nothing.git/blobdiff - src/game/level/level_editor/layer_picker.h
Merge pull request #1237 from tsoding/remove-lt
[nothing.git] / src / game / level / level_editor / layer_picker.h
index 54fa604a40da97000792ea3b321523786d945a34..074dd14621012de1fec2a1b0ad6b34196143280d 100644 (file)
@@ -1,23 +1,26 @@
 #ifndef LAYER_PICKER_H_
 #define LAYER_PICKER_H_
 
+#include "game/camera.h"
+
 typedef struct RectLayer RectLayer;
-typedef struct Camera Camera;
 
 typedef enum {
-    LAYER_PICKER_BOXES = 0,
-    LAYER_PICKER_PLATFORMS,
+    LAYER_PICKER_BACKGROUND = 0,
+    LAYER_PICKER_PLAYER,
     LAYER_PICKER_BACK_PLATFORMS,
+    LAYER_PICKER_PLATFORMS,
     LAYER_PICKER_GOALS,
-    LAYER_PICKER_PLAYER,
     LAYER_PICKER_LAVA,
+    LAYER_PICKER_BOXES,
+    LAYER_PICKER_LABELS,
     LAYER_PICKER_REGIONS,
 
     LAYER_PICKER_N
 } LayerPicker;
 
 int layer_picker_render(const LayerPicker *layer_picker,
-                        Camera *camera);
+                        const Camera *camera);
 int layer_picker_event(LayerPicker *layer_picker,
                        const SDL_Event *event,
                        const Camera *camera,