summaryrefslogtreecommitdiff
path: root/common/set.h
blob: b7cceaaea13cae411229ea9842d4a212cd7faebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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