summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/Universe.h
diff options
context:
space:
mode:
Diffstat (limited to 'StarsEx/Universe.h')
-rw-r--r--StarsEx/Universe.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/StarsEx/Universe.h b/StarsEx/Universe.h
new file mode 100644
index 0000000..f8e9fdd
--- /dev/null
+++ b/StarsEx/Universe.h
@@ -0,0 +1,31 @@
+/* Starshatter: The Open Source Project
+ Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
+ Copyright (c) 1997-2006, Destroyer Studios LLC.
+
+ 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
+