summaryrefslogtreecommitdiffhomepage
path: root/Killmail.h
blob: 23db3c62458363c8bc88c673a221976b3d122c01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include <ctime>

#include "Location.h"
#include "LongVector3.h"
#include "Owner.h"
#include "Ship.h"


struct Killmail
{
    Location location;
    Owner owner;
    Ship ship;
    LongVector3 position;
    std::tm time;
};