Merge pull request #12405 from Jerome67000/clean_getnodetype

Removes Script::get_node_type()

[ci skip]
This commit is contained in:
Rémi Verschelde 2017-10-26 08:49:38 +02:00 committed by GitHub
commit d135008acf
13 changed files with 0 additions and 41 deletions

View file

@ -1720,11 +1720,6 @@ Error CSharpScript::reload(bool p_keep_state) {
return ERR_FILE_MISSING_DEPENDENCIES;
}
String CSharpScript::get_node_type() const {
return ""; // ?
}
ScriptLanguage *CSharpScript::get_language() const {
return CSharpLanguage::get_singleton();

View file

@ -138,7 +138,6 @@ public:
virtual bool is_tool() const { return tool; }
virtual Ref<Script> get_base_script() const;
virtual String get_node_type() const;
virtual ScriptLanguage *get_language() const;
/* TODO */ virtual void get_script_method_list(List<MethodInfo> *p_list) const {}