summaryrefslogtreecommitdiffstats
path: root/src/collision/ColSphere.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/collision/ColSphere.cpp')
-rw-r--r--src/collision/ColSphere.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/collision/ColSphere.cpp b/src/collision/ColSphere.cpp
new file mode 100644
index 00000000..9aac01e0
--- /dev/null
+++ b/src/collision/ColSphere.cpp
@@ -0,0 +1,11 @@
+#include "common.h"
+#include "ColSphere.h"
+
+void
+CColSphere::Set(float radius, const CVector &center, uint8 surf, uint8 piece)
+{
+ this->radius = radius;
+ this->center = center;
+ this->surface = surf;
+ this->piece = piece;
+} \ No newline at end of file