Godot-RTS-Template/editor/script_templates/Object/clean_code_template.gd
lucastucious 3cd2327edc working on mod loader
should i enable the modload inside the engine itself ?
2025-08-01 01:52:26 +02:00

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
# ====================