]> git.localhorst.tv Git - l2e.git/blobdiff - src/common/Script.cpp
first scripting implementation
[l2e.git] / src / common / Script.cpp
diff --git a/src/common/Script.cpp b/src/common/Script.cpp
new file mode 100644 (file)
index 0000000..1797c55
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * Script.cpp
+ *
+ *  Created on: Oct 13, 2012
+ *      Author: holy
+ */
+
+#include "Script.h"
+
+namespace common {
+
+Script::Script()
+: text(0)
+, textlen(0) {
+
+}
+
+Script::~Script() {
+
+}
+
+}