Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/engine.cc')
-rw-r--r--src/model/engine.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/model/engine.cc b/src/model/engine.cc
new file mode 100644
index 0000000..17201d0
--- /dev/null
+++ b/src/model/engine.cc
@@ -0,0 +1,24 @@
+/*
+ model/engine.cc
+ This file is part of the Osirion project and is distributed under
+ the terms of the GNU General Public License version 2
+*/
+
+
+#include "model/engine.h"
+
+namespace model {
+
+
+/* ---------- core::Engine ------------------------------------------ */
+
+Engine::Engine(math::Vector3f const & location) :
+ engine_location(location)
+{
+ engine_radius = 1.0f;
+}
+
+Engine::~Engine()
+{}
+
+}