summaryrefslogtreecommitdiffhomepage
path: root/Killmail.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-05-03 16:12:52 +0200
committerAki <please@ignore.pl>2022-05-03 16:12:52 +0200
commitc610c4b94eda867a3f0b083038502dccb8116170 (patch)
treedda7499b3ac3c9f29bf70ecf927c1031758f53c1 /Killmail.h
parent8e85b084e6ec73cd99899ad276891eb40944b909 (diff)
downloadderelict-c610c4b94eda867a3f0b083038502dccb8116170.zip
derelict-c610c4b94eda867a3f0b083038502dccb8116170.tar.gz
derelict-c610c4b94eda867a3f0b083038502dccb8116170.tar.bz2
Added source and related stubs
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;
+};