summaryrefslogtreecommitdiffhomepage
path: root/Killmail.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-05-20 23:41:54 +0200
committerAki <please@ignore.pl>2022-05-20 23:41:54 +0200
commit0e0358af887336d3466ac408e0404fbc806611f0 (patch)
tree8dc457d80099c9ca7e53bf7e695f5df6592cef40 /Killmail.h
parentf233014e960a412d3c5d4ba0015f09aa620fe567 (diff)
downloadderelict-0e0358af887336d3466ac408e0404fbc806611f0.zip
derelict-0e0358af887336d3466ac408e0404fbc806611f0.tar.gz
derelict-0e0358af887336d3466ac408e0404fbc806611f0.tar.bz2
Flattened Killmail representation a bit
Diffstat (limited to 'Killmail.h')
-rw-r--r--Killmail.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/Killmail.h b/Killmail.h
index 23db3c6..047eb68 100644
--- a/Killmail.h
+++ b/Killmail.h
@@ -2,17 +2,15 @@
#include <ctime>
-#include "Location.h"
#include "LongVector3.h"
#include "Owner.h"
-#include "Ship.h"
struct Killmail
{
- Location location;
- Owner owner;
- Ship ship;
+ long int location;
+ long int ship;
LongVector3 position;
+ Owner owner;
std::tm time;
};