summaryrefslogtreecommitdiffstats
path: root/src/layer.h
blob: 09ad462f54f704f68b7b5e042dccdd69411965ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef LAYER_H
#define LAYER_H

enum layer_id {
	LAYER_GROUND = 0,
	LAYER_OBJ_LOW,
	LAYER_OBJ_MID,
	LAYER_OBJ_HIGH,
	LAYER_WEATHER,
	LAYERS_MAX
};

#endif