diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2023-09-12 11:52:43 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2023-09-12 12:49:56 +0300 |
commit | 26ce86191014fa109052a8330e6f27546760ec73 (patch) | |
tree | 920c9b34763e15e4ab06c23e68e071e70a12ff57 /modules/mono/csharp_script.cpp | |
parent | 5c43e4c1efc85856a4e918bc67e1266657b9110c (diff) | |
download | redot-engine-26ce86191014fa109052a8330e6f27546760ec73.tar.gz |
Editor: Remove unused Class Name field from Create Script dialog
Diffstat (limited to 'modules/mono/csharp_script.cpp')
-rw-r--r-- | modules/mono/csharp_script.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 9e23a27093..94bffdbdf0 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -392,10 +392,6 @@ Script *CSharpLanguage::create_script() const { return memnew(CSharpScript); } -bool CSharpLanguage::has_named_classes() const { - return false; -} - bool CSharpLanguage::supports_builtin_mode() const { return false; } |