From 92df3471557a1e8c51a93d0b6663a2e719055fda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atle=20Hellvik=20Havs=C3=B8?= Date: Mon, 22 Nov 2010 12:57:12 +0100 Subject: Added a Set class. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Atle Hellvik Havsø --- common/set.cpp | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 common/set.cpp (limited to 'common/set.cpp') 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); +} -- cgit v1.2.3