Selaa lähdekoodia

Update godot_interfaces.rst

One too many open curly bracket "{".

Wrong
        public void PrintMe() {

Correct
        public void PrintMe()
cabbagestole 1 vuosi sitten
vanhempi
commit
cce9204a48
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      tutorials/best_practices/godot_interfaces.rst

+ 1 - 1
tutorials/best_practices/godot_interfaces.rst

@@ -525,7 +525,7 @@ accesses:
             _child.MyMethod();
             _child.MyMethod();
         }
         }
 
 
-        public void PrintMe() {
+        public void PrintMe()
         {
         {
             GD.Print(Name);
             GD.Print(Name);
         }
         }