summaryrefslogtreecommitdiffstats
path: root/src/player.rs
diff options
context:
space:
mode:
authorRaymond Hogenson <rhogenson@posteo.net>2018-08-24 18:09:36 -0400
committerRaymond Hogenson <rhogenson@posteo.net>2018-08-24 18:09:36 -0400
commitd98c24f00ffe08a067040b7efaa934c2efc1bfac (patch)
tree586324ba26110ae49dc0356dd4a7af6151ca9d3b /src/player.rs
parentb9a6da7ccabb972074f09d686dc78f9643accfac (diff)
downloadstallman-shooter-d98c24f00ffe08a067040b7efaa934c2efc1bfac.tar.zst
Load the images directly into the executable
Cool, haha. We did it. I also changed a bunch of random shit.
Diffstat (limited to 'src/player.rs')
-rw-r--r--src/player.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/player.rs b/src/player.rs
index 471b2e4..7fdb7b6 100644
--- a/src/player.rs
+++ b/src/player.rs
@@ -113,12 +113,12 @@ impl state::Positioned for Player {
self.y
}
fn radius() -> u32 {
- 13
+ 3
}
}
impl state::Drawable for Player {
fn center() -> (u32, u32) {
- (30, 19)
+ (33, 21)
}
}