#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 Sets; #endif