citylimits/addons/simplelicense/plugin.gd
Tony Bark c980445340 Major clean up and reorganization
- Upgraded to Godot 4
- Just remembered the basic principles are based on a tile editor, and dramatically simplified from there. Derp.
- New state machine and license display add-ons.
- Re-licensed under the GPL because Micropolis' assets aren't under a separate one.
2023-03-14 06:17:27 -04:00

12 lines
177 B
GDScript

@tool
extends EditorPlugin
func _enter_tree() -> void:
# Initialization of the plugin goes here
pass
func _exit_tree() -> void:
# Clean-up of the plugin goes here.
pass