summaryrefslogtreecommitdiff
path: root/modules/mono
diff options
context:
space:
mode:
authorRaul Santos <raulsntos@gmail.com>2023-01-18 15:19:38 +0100
committerRaul Santos <raulsntos@gmail.com>2023-01-18 18:17:38 +0100
commit62106fe5e3c960056d32a9bc70c0399d99e4cc77 (patch)
tree11b32e78917a28f79ff26990d9651aaaa66d3798 /modules/mono
parente514e3732a9588b650776cc962a9e4d8e6ded058 (diff)
C#: Implement `ExportPlugin::_get_name`
Diffstat (limited to 'modules/mono')
-rw-r--r--modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs2
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()