Update godot_interfaces.rst

One too many open curly bracket "{".

Wrong
        public void PrintMe() {

Correct
        public void PrintMe()
This commit is contained in:
cabbagestole
2023-09-24 17:55:09 +09:00
committed by GitHub
parent fed201e55a
commit 66dbc98627

View File

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