Files
iFactory.Godot/addons/BITPlugins/RefencePlugin.cs
CortexCore 983cf15fa2 Init
2023-06-12 15:51:41 +08:00

20 lines
290 B
C#

#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