entity constructor ref var added

This commit is contained in:
kirill.saidov 2021-09-10 11:11:20 +06:00
parent 8705402b39
commit 9413d3c0c6
1 changed files with 1 additions and 1 deletions

View File

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