summaryrefslogtreecommitdiff
path: root/src/data_store.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/data_store.h')
-rw-r--r--src/data_store.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/data_store.h b/src/data_store.h
index 71fedae..b2d75b4 100644
--- a/src/data_store.h
+++ b/src/data_store.h
@@ -1,6 +1,7 @@
#ifndef OXEN_DATA_STORE_H
#define OXEN_DATA_STORE_H
+#include <stdbool.h>
#include "player.h"
#include "table_stacks.h"
#include "hand.h"
@@ -14,6 +15,7 @@ typedef struct
hand_t hand;
uint8_t stack_index;
card selected_card;
+ bool game_finished;
} data_store_t;
data_store_t *data_store(void);