diff options
author | voidedWarranties <hi+github@voidedxd.xyz> | 2023-02-26 22:30:56 -0800 |
---|---|---|
committer | voidedWarranties <hi+github@voidedxd.xyz> | 2023-02-26 22:30:56 -0800 |
commit | bd5ab9f9b42ba0ee5cdda0947c3743ade075eaac (patch) | |
tree | 02fbad2343f6a37c756d0779465ff09a6309fc93 /core/object/script_language.h | |
parent | 0cd148313213e2923004be65bafd6a3781c917ec (diff) |
Remove unused `ScriptLanguage` methods
Diffstat (limited to 'core/object/script_language.h')
-rw-r--r-- | core/object/script_language.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/object/script_language.h b/core/object/script_language.h index 3ef121a8e7..696c9a94a5 100644 --- a/core/object/script_language.h +++ b/core/object/script_language.h @@ -249,7 +249,6 @@ public: virtual void init() = 0; virtual String get_type() const = 0; virtual String get_extension() const = 0; - virtual Error execute_file(const String &p_path) = 0; virtual void finish() = 0; /* EDITOR FUNCTIONS */ @@ -428,11 +427,6 @@ public: virtual int profiling_get_accumulated_data(ProfilingInfo *p_info_arr, int p_info_max) = 0; virtual int profiling_get_frame_data(ProfilingInfo *p_info_arr, int p_info_max) = 0; - virtual void *alloc_instance_binding_data(Object *p_object) { return nullptr; } //optional, not used by all languages - virtual void free_instance_binding_data(void *p_data) {} //optional, not used by all languages - virtual void refcount_incremented_instance_binding(Object *p_object) {} //optional, not used by all languages - virtual bool refcount_decremented_instance_binding(Object *p_object) { return true; } //return true if it can die //optional, not used by all languages - virtual void frame(); virtual bool handles_global_class_type(const String &p_type) const { return false; } |