diff options
Diffstat (limited to 'Creature.cpp')
-rw-r--r-- | Creature.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Creature.cpp b/Creature.cpp index ba2a790..b63bf6d 100644 --- a/Creature.cpp +++ b/Creature.cpp @@ -4,7 +4,7 @@ Creature::Creature() { std::cout << "Creature::Creature(): Creature created.\n"; xVel = 0; - yVel = 0; + yVel = GRAVITY; } int Creature::getXVel() { |