Skip to content

Commit

Permalink
Add plugin config file #69
Browse files Browse the repository at this point in the history
  • Loading branch information
Lecrapouille committed Sep 2, 2024
1 parent ff2bf00 commit 91b365c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
7 changes: 7 additions & 0 deletions addons/gdcef/plugin.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[plugin]

name="GDCEF"
description="Chromium Embedded Framework Webview for Godot 4"
author="Quentin QUADRAT <[email protected]>"
version="0.10.0"
script="plugin.gd"
10 changes: 10 additions & 0 deletions addons/gdcef/plugin.gd
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 91b365c

Please sign in to comment.