summaryrefslogtreecommitdiffhomepage
path: root/Killmail.h
blob: 59e2c547fee8e47b669ec2cfb4c1f78af5925346 (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::time_t time;
};