This commit is contained in:
Kirill Saidov 2023-07-13 19:15:40 +06:00
parent 85a08f1e47
commit 516fbaba58
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -48,7 +48,7 @@ class Play: IState {
BeginDrawing(); scope(exit) { EndDrawing(); }
// clear background
ClearBackground(Colors.YELLOW);
ClearBackground(Colors.GRAY);
// draw
player.draw();