diff options
Diffstat (limited to 'stats/include')
-rw-r--r-- | stats/include/kurator/stats/events.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/stats/include/kurator/stats/events.h b/stats/include/kurator/stats/events.h new file mode 100644 index 0000000..a9a9612 --- /dev/null +++ b/stats/include/kurator/stats/events.h @@ -0,0 +1,22 @@ +#pragma once + +#include <kurator/campaign/UniqueIdentifier.h> + + +namespace kurator +{ +namespace stats +{ + + +struct ShipLeft +{ + double time; + campaign::UniqueIdentifier ship; + int team; + bool destroyed; +}; + + +} // namespace stats +} // namespace kurator |