generated from sigonasr2/CPlusPlusProjectTemplate
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
451 B
14 lines
451 B
2 years ago
|
|
||
|
|
||
|
namespace layer{
|
||
|
enum layer{
|
||
|
INTERFACE, //Interface items should be on this layer. On top of everything.
|
||
|
COLLISION, //Collision checking layer. This layer is
|
||
|
HIGH,
|
||
|
DYNAMIC,
|
||
|
GROUND,
|
||
|
BACKGROUND,
|
||
|
OBJECT, //The object layer doesn't actually exist, it's used to tell the editor we are adding an object instead.
|
||
|
ENCOUNTER, //The encounter layer doesn't actually exist, it's used to tell the editor we are adding encounters instead.
|
||
|
};
|
||
|
}
|