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/tags.cc')
-rw-r--r--src/model/tags.cc17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/model/tags.cc b/src/model/tags.cc
index 5993f99..75580e5 100644
--- a/src/model/tags.cc
+++ b/src/model/tags.cc
@@ -149,6 +149,23 @@ Sound::~Sound()
{
}
+/* ---- class Dock ------------------------------------------------- */
+
+Weapon::Weapon() : Tag()
+{
+ weapon_radius = 0.01f;
+}
+
+Weapon::Weapon(const Weapon& other) : Tag(other)
+{
+ weapon_radius = other.radius();
+ weapon_axis.assign(other.axis());
+}
+
+Weapon::~Weapon()
+{
+}
+
/* ---- class SubModel---------------------------------------------- */
SubModel::SubModel() : Tag()