Updated tutorial_gdscript_efficiently (markdown)

reduz 2014-09-20 08:00:05 -07:00
parent 071c544457
commit e72b977238

@ -201,7 +201,7 @@ d["age"]=11 # modification
d.erase("name") #removal
```
Two-dimensional arrays can often be implemented easier with dictionaries. Here's a simple battleship game example:
In most cases, two-dimensional arrays can often be implemented more easily with dictionaries. Here's a simple battleship game example:
```python
#battleship game