summaryrefslogtreecommitdiff
path: root/common/set.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/set.h')
-rw-r--r--common/set.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/common/set.h b/common/set.h
deleted file mode 100644
index b7cceaa..0000000
--- a/common/set.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#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