summaryrefslogtreecommitdiffhomepage
path: root/Player.cpp
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-18 20:38:16 +0200
committerAki <please@ignore.pl>2022-04-18 20:39:44 +0200
commitadd251b4ea37b57cf926b07e5e04d9b065f82a2c (patch)
tree9cecb47f168c985017971a3373de59b35f85db1a /Player.cpp
parentbbec07ab3de333649d14a64fa01f7e8ad6d56c58 (diff)
downloadbullethell2022-add251b4ea37b57cf926b07e5e04d9b065f82a2c.zip
bullethell2022-add251b4ea37b57cf926b07e5e04d9b065f82a2c.tar.gz
bullethell2022-add251b4ea37b57cf926b07e5e04d9b065f82a2c.tar.bz2
Playing around with enemies, added dumb pos manipulation
Diffstat (limited to 'Player.cpp')
-rw-r--r--Player.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Player.cpp b/Player.cpp
index 9e4be4d..490b810 100644
--- a/Player.cpp
+++ b/Player.cpp
@@ -39,7 +39,7 @@ Player::update(const float dt)
void
Player::draw()
{
- DrawCircle(m_position.x, m_position.y, 10, LIGHTGRAY);
+ DrawCircle(m_position.x, m_position.y, 4, LIGHTGRAY);
}