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

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


struct Killmail
{
    Location location;
    Owner owner;
    Ship ship;
    LongVector3 position;
};