multi-screen-projector/engine/modules/gdscript/tests/scripts/parser/features/enum.gd
2025-03-13 08:40:48 +00:00

15 lines
144 B
GDScript

enum Size {
S = -10,
M,
L = 0,
XL = 10,
XXL,
}
func test():
print(Size.S)
print(Size.M)
print(Size.L)
print(Size.XL)
print(Size.XXL)