summaryrefslogtreecommitdiff
path: root/MapObject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'MapObject.cpp')
-rw-r--r--MapObject.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/MapObject.cpp b/MapObject.cpp
new file mode 100644
index 0000000..5535bda
--- /dev/null
+++ b/MapObject.cpp
@@ -0,0 +1,11 @@
+#include <iostream>
+#include "MapObject.h"
+
+MapObject::MapObject() {
+ std::cout << "MapObject::MapObject(): MapObject created.\n";
+ isVisible = true;
+}
+
+int MapObject::getType() {
+ return type;
+}