diff options
Diffstat (limited to 'addons/third-person-camera/tpc.gd')
-rw-r--r-- | addons/third-person-camera/tpc.gd | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/addons/third-person-camera/tpc.gd b/addons/third-person-camera/tpc.gd new file mode 100644 index 0000000..45a417e --- /dev/null +++ b/addons/third-person-camera/tpc.gd @@ -0,0 +1,12 @@ +@tool +extends EditorPlugin + + +func _enter_tree(): + # Initialization of the plugin goes here. + pass + + +func _exit_tree(): + # Clean-up of the plugin goes here. + pass |