Inital Commit of C# Code

This commit is contained in:
Mario Steele 2025-09-23 15:11:34 -05:00
commit c5058f8b84
104 changed files with 2588 additions and 0 deletions

View file

@ -0,0 +1,17 @@
@tool
class_name GoZenServer
extends EditorPlugin
## GoZenServer is only used for adding the node to the node list.
func _enter_tree() -> void:
add_custom_type(
"VideoPlayback", "Control",
load("res://addons/gde_gozen/video_playback.gd"),
load("res://addons/gde_gozen/icon.webp"))
func _exit_tree() -> void:
remove_custom_type("VideoPlayback")