diff --git a/godot/nim/godotmacros.nim b/godot/nim/godotmacros.nim index d6efa6d2..24c589ab 100644 --- a/godot/nim/godotmacros.nim +++ b/godot/nim/godotmacros.nim @@ -22,6 +22,7 @@ type returnType: NimNode nimNode: NimNode isNoGodot: bool + isGdExport:bool ObjectDecl = ref object name: string @@ -164,6 +165,7 @@ proc parseMethod(meth: NimNode): MethodDecl = returnType: meth[3][0], isVirtual: meth.kind == nnkMethodDef, isNoGodot: isNoGodot, + isGdExport: isGdExport, nimNode: meth ) for i in 1..