summaryrefslogtreecommitdiff
path: root/common/set.cpp
diff options
context:
space:
mode:
authorAtle Hellvik Havsø <atle@havso.net>2010-11-22 12:57:12 +0100
committerAtle Hellvik Havsø <atle@havso.net>2010-11-22 12:57:12 +0100
commit92df3471557a1e8c51a93d0b6663a2e719055fda (patch)
tree3482f8a35c199a9d4a5f79764c26026ae99a27b2 /common/set.cpp
parent9a2d4a69e13b344d4342af3c81373ac14eeb0368 (diff)
Added a Set class.
Signed-off-by: Atle Hellvik Havsø <atle@havso.net>
Diffstat (limited to 'common/set.cpp')
-rw-r--r--common/set.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/set.cpp b/common/set.cpp
new file mode 100644
index 0000000..ce44f02
--- /dev/null
+++ b/common/set.cpp
@@ -0,0 +1,5 @@
+#include "set.h"
+
+void Set::add_tile(Tile tile) {
+ container.push_back(tile);
+}