summaryrefslogtreecommitdiff
path: root/common/set.cpp
diff options
context:
space:
mode:
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);
+}