mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 08:04:23 +00:00
11 lines
125 B
GDScript3
11 lines
125 B
GDScript3
|
extends Node
|
||
|
|
||
|
class_name Enums
|
||
|
|
||
|
enum ZIndex {
|
||
|
EntityAir = 20,
|
||
|
EntityGround = 10,
|
||
|
Props = 0,
|
||
|
Terrain = -10,
|
||
|
}
|