index
:
7w
master
C version of popular drafting card game
bgstack15
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
trade.c
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'trade.c')
-rw-r--r--
trade.c
6
1 files changed, 6 insertions, 0 deletions
diff --git a/trade.c b/trade.c
new file mode 100644
index 0000000..1434a05
--- /dev/null
+++ b/
trade.c
@@ -0,0 +1,6 @@
+#include "7w.h"
+
+//0 is east, 1 is west
+int get_trade(int direction) {
+
+}
bgstack15