9 lines
185 B
JavaScript
9 lines
185 B
JavaScript
(function() {
|
|
print("Inside ctor");
|
|
this.preload = function() {
|
|
print("inside preload");
|
|
}
|
|
this.unload = function() {
|
|
print("inside preload");
|
|
}
|
|
});
|