diff options
author | Raul Santos <raulsntos@gmail.com> | 2023-01-18 15:19:38 +0100 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2023-01-18 18:17:38 +0100 |
commit | 62106fe5e3c960056d32a9bc70c0399d99e4cc77 (patch) | |
tree | 11b32e78917a28f79ff26990d9651aaaa66d3798 /modules/mono | |
parent | e514e3732a9588b650776cc962a9e4d8e6ded058 (diff) |
C#: Implement `ExportPlugin::_get_name`
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs b/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs index 745a8b73f8..db96003baf 100644 --- a/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs +++ b/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs @@ -17,6 +17,8 @@ namespace GodotTools.Export { public partial class ExportPlugin : EditorExportPlugin { + public override string _GetName() => "C#"; + private List<string> _tempFolders = new List<string>(); public void RegisterExportSettings() |