23 lines
572 B
GDScript
23 lines
572 B
GDScript
# meta-name: Clean Code Template
|
|
# meta-description: Use this format to structure your code into clear sections
|
|
# meta-default: true
|
|
# meta-space-indent: 4
|
|
extends _BASE_
|
|
|
|
#region declaration
|
|
# === CONST === # Constants and immutables, in UPPERCASE
|
|
|
|
# === STATIC === # Static variables/functions
|
|
|
|
#endregion
|
|
|
|
# === Init === # Initialization logic, if needed
|
|
|
|
func _init() -> void:
|
|
pass
|
|
|
|
# === PUBLIC FUNCTIONS ===
|
|
|
|
# === PRIVATE FUNCTIONS === # use _underscore() to make the difference between private and public functions
|
|
|
|
# ====================
|