summaryrefslogtreecommitdiff
path: root/helper.h
diff options
context:
space:
mode:
authorStephen Enders <smenders@gmail.com>2021-01-05 01:16:37 -0500
committerStephen Enders <smenders@gmail.com>2021-01-05 01:16:37 -0500
commit1dbd3c241ea6af43a26449e515438cc241de46ad (patch)
tree5a0db7bacaa4802d3980a25d9df5998df5c49b46 /helper.h
parent443d7ec4b25da99a52c9b3b06fb1d954b060a912 (diff)
Pass reference when passing objects!
Diffstat (limited to 'helper.h')
-rw-r--r--helper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/helper.h b/helper.h
index 69b37ad..8626e23 100644
--- a/helper.h
+++ b/helper.h
@@ -35,10 +35,10 @@ loadTextures(const char* path);
sf::Font loadFont();
std::shared_ptr<struct player_t>
-createPlayer(sf::Texture pieceTexture);
+createPlayer(sf::Texture& pieceTexture);
std::shared_ptr<struct piece_t>
-createPiece(int id, sf::Texture texture);
+createPiece(int id, sf::Texture& texture);
bool
clickedPiece(sf::Vector2i mousePosition, std::shared_ptr<struct piece_t> piece);