summaryrefslogtreecommitdiffstats
path: root/src/collision/ColLine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/collision/ColLine.h')
-rw-r--r--src/collision/ColLine.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/collision/ColLine.h b/src/collision/ColLine.h
new file mode 100644
index 00000000..21587a06
--- /dev/null
+++ b/src/collision/ColLine.h
@@ -0,0 +1,14 @@
+#pragma once
+
+struct CColLine
+{
+ // NB: this has to be compatible with two CVuVectors
+ CVector p0;
+ int pad0;
+ CVector p1;
+ int pad1;
+
+ CColLine(void) { };
+ CColLine(const CVector &p0, const CVector &p1) { this->p0 = p0; this->p1 = p1; };
+ void Set(const CVector &p0, const CVector &p1);
+}; \ No newline at end of file