lesson#26 updated
This commit is contained in:
parent
d43b7dd9a4
commit
25f6db3107
Binary file not shown.
|
@ -40,6 +40,8 @@ class Entity {
|
|||
void draw() {
|
||||
DrawTextureRec(texture, frame, position, Colors.WHITE);
|
||||
}
|
||||
|
||||
abstract void update();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -7,9 +7,7 @@ class Player: Entity {
|
|||
super(texture, frame, position);
|
||||
}
|
||||
|
||||
/*override void update() {
|
||||
// ...
|
||||
}*/
|
||||
override void update() { }
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue