mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-04 07:31:16 +00:00 
			
		
		
		
	Not a full refactor as it still goes through ScriptLanguage so it's hacky, but at least it can now compile without this.
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			349 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			349 B
		
	
	
	
		
			C#
		
	
	
	
	
	
// 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
 |