Updated tutorial_gdscript_efficiently (markdown)

reduz 2014-09-20 09:44:19 -07:00
parent 3e7dcee55e
commit f0c260dfd3

@ -119,7 +119,7 @@ public final void do_something() {
```python
func use_class(instance); #does not care about class type
instance.use() # will work with any class that as a .use() method.
instance.use() # will work with any class that has a ".use()" method.
func do_something():
var instance = SomeClass.new() # created as reference