summaryrefslogtreecommitdiff
path: root/common/set.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/set.h')
m---------common0
-rw-r--r--common/set.h24
2 files changed, 0 insertions, 24 deletions
diff --git a/common b/common
new file mode 160000
+Subproject dd64a35c949738c2c321989d065e0754556823d
diff --git a/common/set.h b/common/set.h
deleted file mode 100644
index faf9a3b..0000000
--- a/common/set.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef SET_H
-#define SET_H
-
-#include "tile.h"
-
-class Set {
- public:
- enum Type {
- Pair,
- Chi,
- Pon,
- Kan
- };
-
- Type type;
- Tiles tiles;
- bool open;
-
- Set(Type ty, Tiles ti, bool o) : type(ty), tiles(ti), open(o) {}
-};
-
-typedef List<Set> Sets;
-
-#endif