summaryrefslogtreecommitdiff
path: root/match.h
diff options
context:
space:
mode:
Diffstat (limited to 'match.h')
-rw-r--r--match.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/match.h b/match.h
new file mode 100644
index 0000000..0b44b45
--- /dev/null
+++ b/match.h
@@ -0,0 +1,24 @@
+#ifndef MATCH_H
+#define MATCH_H
+
+#include "board.h"
+
+struct visit {
+ int points;
+ int rem;
+ int n_darts;
+ struct segment *darts;
+};
+
+struct leg {
+ char *name;
+ int start;
+ int rem;
+ int n_visits;
+ struct visit *visits;
+};
+
+struct leg *leg_init(int points, char *name);
+void leg_free(struct leg *l);
+
+#endif