Rally X
ELEN3009 Project by Justin Wernick and David Schneider
source/logic/Rock.h
Go to the documentation of this file.
00001 #ifndef ROCK_H
00002 #define ROCK_H
00003 
00004 #include "../logic/GameObject.h"
00005 #include "../presentation/BitmapStore.h"
00006 
00015 class Rock: public GameObject
00016 {
00017     public:
00024         Rock(double x, double y);
00025 
00026         //assignment and copy constructors have been left with the compiler generated versions
00027 };
00028 
00029 #endif // ROCK_H
 All Classes Files Functions Variables Typedefs Enumerations Enumerator