Rally X
ELEN3009 Project by Justin Wernick and David Schneider
source/logic/DestroyedObjectPopup.h
Go to the documentation of this file.
00001 #ifndef DESTROYEDOBJECTPOPUP_H
00002 #define DESTROYEDOBJECTPOPUP_H
00003 
00004 #include "../logic/LimitedTimeObject.h"
00005 #include "../presentation/BitmapStore.h"
00006 
00015 class DestroyedObjectPopup : public LimitedTimeObject
00016 {
00017     public:
00025         DestroyedObjectPopup(double x, double y, BitmapStore::Image image);
00026 
00027         //assignment and copy constructors have been left with the compiler generated versions
00028 
00029     private:
00030         static const int POPUP_TIME = 30; 
00031 };
00032 
00033 #endif // DESTROYEDOBJECTPOPUP_H
 All Classes Files Functions Variables Typedefs Enumerations Enumerator