Renamed doc to docs and minor language fixes

This commit is contained in:
Lukas Klingsbo
2020-05-07 21:50:01 +02:00
parent 8b80194c42
commit 9293a6e4a9
215 changed files with 59 additions and 41 deletions

View File

@ -41,6 +41,7 @@ class Square extends PositionComponent with HasGameRef<MyGame> {
@override
void update(double t) {
super.update(t);
angle += SPEED * t;
angle %= 2 * math.pi;
}