summaryrefslogtreecommitdiff
path: root/js/sprite.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/sprite.js')
-rw-r--r--js/sprite.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/js/sprite.js b/js/sprite.js
deleted file mode 100644
index 38b00fc..0000000
--- a/js/sprite.js
+++ /dev/null
@@ -1,14 +0,0 @@
-var coinImage = new Image();
-coinImage.src = "images/coin-sprite-animation.png";
-
-function sprite (options) {
-
- var that = {};
-
- that.context = options.context;
- that.width = options.width;
- that.height = options.height;
- that.image = options.image;
-
- return that;
-} \ No newline at end of file