diff options
Diffstat (limited to 'nGenEx/Universe.h')
-rw-r--r-- | nGenEx/Universe.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/nGenEx/Universe.h b/nGenEx/Universe.h new file mode 100644 index 0000000..d599586 --- /dev/null +++ b/nGenEx/Universe.h @@ -0,0 +1,32 @@ +/* Project nGen
+ John DiCamillo
+ Copyright © 1997-2002. All Rights Reserved.
+
+ SUBSYSTEM: nGen.lib
+ FILE: Universe.h
+ AUTHOR: John DiCamillo
+
+
+ OVERVIEW
+ ========
+ Abstract Universe class
+*/
+
+#ifndef Universe_h
+#define Universe_h
+
+#include "Types.h"
+
+// +--------------------------------------------------------------------+
+
+class Universe
+{
+public:
+ Universe() { }
+ virtual ~Universe() { }
+
+ virtual void ExecFrame(double seconds) { }
+};
+
+#endif Universe_h
+
|