This commit is contained in:
CortexCore
2023-06-12 15:51:41 +08:00
parent 118c28b187
commit 983cf15fa2
38 changed files with 2118 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#if TOOLS
using Godot;
using System;
namespace BITKit;
[Tool]
public partial class RefencePlugin : EditorPlugin
{
public override void _EnterTree()
{
// Initialization of the plugin goes here.
}
public override void _ExitTree()
{
// Clean-up of the plugin goes here.
}
}
#endif