update
This commit is contained in:
parent
85a08f1e47
commit
516fbaba58
|
@ -3,7 +3,7 @@ module game.player;
|
|||
import game.data;
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ class Play: IState {
|
|||
BeginDrawing(); scope(exit) { EndDrawing(); }
|
||||
|
||||
// clear background
|
||||
ClearBackground(Colors.YELLOW);
|
||||
ClearBackground(Colors.GRAY);
|
||||
|
||||
// draw
|
||||
player.draw();
|
||||
|
|
Loading…
Reference in New Issue