summaryrefslogtreecommitdiffstats
path: root/sigencore
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-03-20 18:48:25 -0400
committerBen Boeckel <MathStuf@gmail.com>2009-03-20 18:48:25 -0400
commit0b64daead405876967b1be5cb8ad7a0f7455ad61 (patch)
tree4c04b6da3150389c3577a789bf52cc9d7e2112e2 /sigencore
parent1b042fd28cfc8126795a76026a66fbe602f9e395 (diff)
downloadsigen-0b64daead405876967b1be5cb8ad7a0f7455ad61.tar.gz
sigen-0b64daead405876967b1be5cb8ad7a0f7455ad61.tar.xz
sigen-0b64daead405876967b1be5cb8ad7a0f7455ad61.zip
Add ctor for Canvas
Diffstat (limited to 'sigencore')
-rw-r--r--sigencore/CMakeLists.txt1
-rw-r--r--sigencore/Canvas.cpp27
2 files changed, 28 insertions, 0 deletions
diff --git a/sigencore/CMakeLists.txt b/sigencore/CMakeLists.txt
index e4dce53d..a90e965c 100644
--- a/sigencore/CMakeLists.txt
+++ b/sigencore/CMakeLists.txt
@@ -15,6 +15,7 @@ set(sigencore_HEADERS
)
set(sigencore_SRCS
Arena.cpp
+ Canvas.cpp
Client.cpp
Containment.cpp
Creature.cpp
diff --git a/sigencore/Canvas.cpp b/sigencore/Canvas.cpp
new file mode 100644
index 00000000..322b63e4
--- /dev/null
+++ b/sigencore/Canvas.cpp
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2009 Ben Boeckel <MathStuf@gmail.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+// Header include
+#include "Canvas.h"
+
+using namespace Sigscript;
+using namespace Sigencore;
+
+Canvas::Canvas(Config* parent) :
+ Config(parent)
+{
+}