Update README.MD

This commit is contained in:
intns 2022-10-17 20:32:19 +01:00 committed by EpochFlame
parent 5ac8f56b10
commit 24f7ab187c

View File

@ -74,12 +74,15 @@ iterator.first();
while (!iterator.isDone()) {
Code
iterator.next();
}```
}
```
Which we have further condensed into:
```
CI_LOOP(iterator) {
Code
}```
}
```
### Enemies
- ```CG_PARMS(x)``` is shorthand for ```static_cast<Parms*>(x->m_parms)```.