Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/tests/scripts/parser/features/enum.gd
10285 views
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)