lesson#26 updated

This commit is contained in:
Kirill Saidov 2021-08-29 12:38:47 +06:00
parent d43b7dd9a4
commit 25f6db3107
3 changed files with 3 additions and 3 deletions

View File

@ -40,6 +40,8 @@ class Entity {
void draw() {
DrawTextureRec(texture, frame, position, Colors.WHITE);
}
abstract void update();
}

View File

@ -7,9 +7,7 @@ class Player: Entity {
super(texture, frame, position);
}
/*override void update() {
// ...
}*/
override void update() { }
}