From 9413d3c0c61acf751ce6b0d0ee944b622340b3c0 Mon Sep 17 00:00:00 2001 From: "kirill.saidov" Date: Fri, 10 Sep 2021 11:11:20 +0600 Subject: [PATCH] entity constructor ref var added --- lesson#26 - Drawing a player/ourGame/source/game/data.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lesson#26 - Drawing a player/ourGame/source/game/data.d b/lesson#26 - Drawing a player/ourGame/source/game/data.d index 0faa423..7fa7ad8 100644 --- a/lesson#26 - Drawing a player/ourGame/source/game/data.d +++ b/lesson#26 - Drawing a player/ourGame/source/game/data.d @@ -26,7 +26,7 @@ class Entity { Rectangle frame; Vector2 position; - this(const Texture2D texture, const Rectangle frame, const Vector2 Position) { + this(const ref Texture2D texture, const Rectangle frame, const Vector2 Position) { this.texture = texture; this.frame = frame; this.position = position;