summaryrefslogtreecommitdiff
path: root/src/pnoc.h
diff options
context:
space:
mode:
authorMario Kilies <MarioKilies@GMX.net>2011-01-25 13:14:17 +0100
committerMario Kilies <MarioKilies@GMX.net>2011-01-25 13:14:17 +0100
commit52f95177eb8050f073a3d65413feb16cfce93baa (patch)
treef94b78be6d4b09fe3ee7d93d4b40c80387a80f33 /src/pnoc.h
parent3fc586325f8fc8fb4f1990bf87ad4c37e722f381 (diff)
Removed awkward pnoc_t and refactored its contents to the new player_list_entry_t.
Diffstat (limited to 'src/pnoc.h')
-rw-r--r--src/pnoc.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/pnoc.h b/src/pnoc.h
deleted file mode 100644
index 8ef8606..0000000
--- a/src/pnoc.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef OXEN_PNOC_H
-#define OXEN_PNOC_H
-
-#include "card.h"
-
-#define MAX_PLAYER_NAME_LENGTH 10
-
-typedef struct
-{
- uint8_t player_id;
- char player_name[MAX_PLAYER_NAME_LENGTH+1]; // Player name length + 1 for string termination
- card open_card;
-} pnoc_t;
-
-void pnoc_sort(pnoc_t pnoc[], const uint8_t num_tuples);
-
-#endif // OXEN_PNOC_H