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

#include <ctime>

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


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