diff options
Diffstat (limited to 'core/script_language.h')
-rw-r--r-- | core/script_language.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/script_language.h b/core/script_language.h index c1b906e251..7104fe4547 100644 --- a/core/script_language.h +++ b/core/script_language.h @@ -126,6 +126,19 @@ public: virtual ~ScriptInstance(); }; +class ScriptCodeCompletionCache { + + static ScriptCodeCompletionCache *singleton; +public: + + virtual RES get_cached_resource(const String& p_path)=0; + + static ScriptCodeCompletionCache* get_sigleton() { return singleton; } + + ScriptCodeCompletionCache(); + +}; + class ScriptLanguage { public: |