#ifndef CHI_H #define CHI_H #include "tile.h" //! Contains a set of tiles class Set : public Tile { private: Tiles container; public: Set(){}; virtual ~Set(){}; //! Add a tile to the set //! \param tile The tile that should be added to the set void add_tile(Tile tile); }; #endif // CHI_H