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.cc31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/model/engine.cc b/src/model/engine.cc
deleted file mode 100644
index 959f2ce..0000000
--- a/src/model/engine.cc
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- 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
-{
-
-
-/* ---- class Engine ----------------------------------------------- */
-
-Engine::Engine() :
- engine_location()
-{
- engine_radius = 1.0f;
-}
-
-Engine::Engine(math::Vector3f const & location) :
- engine_location(location)
-{
- engine_radius = 1.0f;
-}
-
-Engine::~Engine()
-{}
-
-}