aboutsummaryrefslogtreecommitdiff
path: root/VacuumCleaner.js
diff options
context:
space:
mode:
Diffstat (limited to 'VacuumCleaner.js')
-rw-r--r--VacuumCleaner.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/VacuumCleaner.js b/VacuumCleaner.js
new file mode 100644
index 0000000..7841b5a
--- /dev/null
+++ b/VacuumCleaner.js
@@ -0,0 +1,13 @@
+(function(window) {
+
+var VacuumCleaner = function() {
+ this.initialize();
+}
+var p = VacuumCleaner.prototype = Container;
+
+ p.base_initialize = p.initialize();
+ p.initialize = function() {
+ }
+
+window.VacuumCleaner = VacuumCleaner;
+}(window))