update
This commit is contained in:
parent
85a08f1e47
commit
516fbaba58
|
@ -3,7 +3,7 @@ module game.player;
|
||||||
import game.data;
|
import game.data;
|
||||||
|
|
||||||
class Player: Entity {
|
class Player: Entity {
|
||||||
this(const ref Texture2D texture, const Rectangle frame, const Vector2 position) {
|
this(in Texture2D texture, in Rectangle frame, in Vector2 position) {
|
||||||
super(texture, frame, position);
|
super(texture, frame, position);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ class Play: IState {
|
||||||
BeginDrawing(); scope(exit) { EndDrawing(); }
|
BeginDrawing(); scope(exit) { EndDrawing(); }
|
||||||
|
|
||||||
// clear background
|
// clear background
|
||||||
ClearBackground(Colors.YELLOW);
|
ClearBackground(Colors.GRAY);
|
||||||
|
|
||||||
// draw
|
// draw
|
||||||
player.draw();
|
player.draw();
|
||||||
|
|
Loading…
Reference in New Issue