diff --git a/addons/gdcef/plugin.cfg b/addons/gdcef/plugin.cfg new file mode 100644 index 0000000..3835175 --- /dev/null +++ b/addons/gdcef/plugin.cfg @@ -0,0 +1,7 @@ +[plugin] + +name="GDCEF" +description="Chromium Embedded Framework Webview for Godot 4" +author="Quentin QUADRAT " +version="0.10.0" +script="plugin.gd" diff --git a/addons/gdcef/plugin.gd b/addons/gdcef/plugin.gd new file mode 100644 index 0000000..ef2f207 --- /dev/null +++ b/addons/gdcef/plugin.gd @@ -0,0 +1,10 @@ +@tool +extends EditorPlugin + +func _enter_tree(): + # Initialization of the plugin goes here. + pass + +func _exit_tree(): + # Clean-up of the plugin goes here. + pass