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

#include <ctime>

#include "LongVector3.h"
#include "Owner.h"


struct Killmail
{
    long int location;
    long int ship;
    LongVector3 position;
    Owner owner;
    std::tm time;
};