summaryrefslogtreecommitdiffhomepage
path: root/Killmail.h
diff options
context:
space:
mode:
Diffstat (limited to 'Killmail.h')
-rw-r--r--Killmail.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Killmail.h b/Killmail.h
new file mode 100644
index 0000000..64cf972
--- /dev/null
+++ b/Killmail.h
@@ -0,0 +1,16 @@
+#pragma once
+
+#include <raylib.h>
+
+#include "Location.h"
+#include "Owner.h"
+#include "Ship.h"
+
+
+struct Killmail
+{
+ Location location;
+ Owner owner;
+ Ship ship;
+ Vector3 position;
+};