Added full source code

This commit is contained in:
Emmanuel BENOîT 2016-01-10 11:01:49 +01:00
commit 33f8586698
1377 changed files with 123808 additions and 0 deletions
misc/Legacy Worlds.wdgt/lib/LWWidget/Data

View file

@ -0,0 +1,12 @@
LWWidget.Data.Leaf = LWWidget.Data.inherits({
constructor: function (name, text) {
this.base(name);
this.text = text;
},
getText: function () {
return this.text;
}
});