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

#include <raylib.h>

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


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