summaryrefslogtreecommitdiffstats
path: root/src/gates.rs
AgeCommit message (Collapse)AuthorFilesLines
2023-07-21Fix clippy warnings.Rose Hogenson1-4/+4
2023-07-21Remove dependency on the rand crate.Rose Hogenson1-4/+4
I don't need a dependency to generate random numbers. I know how to generate random numbers.
2023-07-21Remove unnecessary "extern crate" declarations.Rose Hogenson1-13/+31
2018-08-24Fix a typo which prevented compilingRaymond Hogenson1-1/+1
Jesus I should try to test things before I push them.
2018-08-24Load the images directly into the executableRaymond Hogenson1-12/+15
Cool, haha. We did it. I also changed a bunch of random shit.
2018-08-22Make taking injuries more flexibleRaymond Hogenson1-3/+12
I've just moved it into the Enemy trait, because I was planning on having Bill move around when he got hit, but it didn't look good.
2018-08-22Make Bill a bit biggerRaymond Hogenson1-1/+1
It's just less fun when he's so tiny
2018-08-19Move some code around and improve abstractionRaymond Hogenson1-0/+185
This doesn't change the functionality of the game at all (ideally), but makes it easier to refactor and to add new enemies and new stages, which is really the end-goal of this whole thing.