// CSE 143 // Homework 5 // http://www.cs.washington.edu/education/courses/143/00su/homework/ // 30 Jul 2000, Ken Yasuhara #include "projectile.h" // virtual void Projectile::getNextPosition(double &nextX, double &nextY) { vy += ACCEL_GRAVITY; MovingObject::getNextPosition(nextX, nextY); }