8 lines
183 B
C
8 lines
183 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "game_types.h"
|
|
|
|
typedef struct { uint16_t games; uint16_t wins; uint16_t losses; uint32_t shots; uint32_t hits; } cumulative_statistics_t;
|