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

#include <raylib.h>

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


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