Explorar el Código

Update godot_interfaces.rst

One too many open curly bracket "{".

Wrong
        public void PrintMe() {

Correct
        public void PrintMe()
cabbagestole hace 1 año
padre
commit
053de3b605
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tutorials/best_practices/godot_interfaces.rst

+ 1 - 1
tutorials/best_practices/godot_interfaces.rst

@@ -504,7 +504,7 @@ accesses:
             Child.MyMethod();
         }
 
-        public void PrintMe() {
+        public void PrintMe()
         {
             GD.Print(GetClass());
         }