diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2020-12-15 20:51:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-15 20:51:38 +0100 |
commit | abfc528439f334eaea91377a46121089aa5be229 (patch) | |
tree | dc7b4681d60bb07998e408971a06f2ed51fdc5df /modules/gdscript/gdscript.h | |
parent | f26a765637acea98b4745d4b17d1e82961b267c1 (diff) | |
parent | c7b6a7adcc3552fd6fd2e9061ab790798dd9830a (diff) | |
download | redot-engine-abfc528439f334eaea91377a46121089aa5be229.tar.gz |
Merge pull request #43890 from vnen/gdscript-builtin-functions-refactor
GDScript: Refactor builtin functions
Diffstat (limited to 'modules/gdscript/gdscript.h')
-rw-r--r-- | modules/gdscript/gdscript.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index f949d26664..11c449c5f2 100644 --- a/modules/gdscript/gdscript.h +++ b/modules/gdscript/gdscript.h @@ -72,8 +72,8 @@ class GDScript : public Script { friend class GDScriptFunction; friend class GDScriptAnalyzer; friend class GDScriptCompiler; - friend class GDScriptFunctions; friend class GDScriptLanguage; + friend struct GDScriptUtilityFunctionsDefinitions; Ref<GDScriptNativeClass> native; Ref<GDScript> base; @@ -270,8 +270,8 @@ public: class GDScriptInstance : public ScriptInstance { friend class GDScript; friend class GDScriptFunction; - friend class GDScriptFunctions; friend class GDScriptCompiler; + friend struct GDScriptUtilityFunctionsDefinitions; ObjectID owner_id; Object *owner; |