X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fcommon%2FScript.cpp;fp=src%2Fcommon%2FScript.cpp;h=1797c553b343121f8100e144d82e4ea5d6693cf4;hb=6e88a625710c7936f87b38ecf6094472f3a49f4f;hp=0000000000000000000000000000000000000000;hpb=f1e445b660889a18eaf05e7fcc16b360fb8605d5;p=l2e.git diff --git a/src/common/Script.cpp b/src/common/Script.cpp new file mode 100644 index 0000000..1797c55 --- /dev/null +++ b/src/common/Script.cpp @@ -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() { + +} + +}