summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor/script_templates/EditorPlugin/plugin.cs
blob: eba5fd12a4521f0a7d4015dc93acf6224d800939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// meta-description: Basic plugin template

#if TOOLS
using _BINDINGS_NAMESPACE_;
using System;

[Tool]
public partial class _CLASS_ : _BASE_
{
    public override void _EnterTree()
    {
        // Initialization of the plugin goes here.
    }

    public override void _ExitTree()
    {
        // Clean-up of the plugin goes here.
    }
}
#endif