From d3248c04a0e4972ee9a6c5f8c40f0a747adf740d Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Wed, 31 Jul 2024 20:29:41 +0200 Subject: [PATCH] GodotScript.hpp: Add missing namespace usage Signed-off-by: Username404-59 --- src/headers/transpiler/implementations/GodotScript.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/headers/transpiler/implementations/GodotScript.hpp b/src/headers/transpiler/implementations/GodotScript.hpp index 5deff36..f69cd0b 100644 --- a/src/headers/transpiler/implementations/GodotScript.hpp +++ b/src/headers/transpiler/implementations/GodotScript.hpp @@ -1,5 +1,6 @@ #ifndef GODOTSCRIPT_HPP #define GODOTSCRIPT_HPP +using namespace StandardComponents; struct GsTarget: Target { print_functions_pair printFunctions() final { return make_pair("printraw", "print"); }