summaryrefslogtreecommitdiff
path: root/engine-ocean/Game/Environment/Environment.h
diff options
context:
space:
mode:
Diffstat (limited to 'engine-ocean/Game/Environment/Environment.h')
-rw-r--r--engine-ocean/Game/Environment/Environment.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/engine-ocean/Game/Environment/Environment.h b/engine-ocean/Game/Environment/Environment.h
new file mode 100644
index 0000000..90a5409
--- /dev/null
+++ b/engine-ocean/Game/Environment/Environment.h
@@ -0,0 +1,12 @@
+#ifndef ENVIRONMENT_H
+#define ENVIRONMENT_H
+
+class Environment
+{
+public:
+ Environment();
+ virtual void draw() = 0;
+ virtual void update(double deltaTime) = 0;
+};
+
+#endif // ENVIRONMENT_H