summaryrefslogtreecommitdiff
path: root/src/js/main.js
blob: da54257543e8fcc372a3a0952cb0f432075ae201 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*************************************
 *
 *  Project TechRPG by Alee Productions
 *
 *  Please don't steal the reuse code without our credit.
 *
 *************************************/

console.log("Script has been started");
var coinImage = new Image();
coinImage.src = "images/coin-sprite-animation.png";

function main (options) {

    var that = {};

    that.context = options.context;
    that.width = options.width;
    that.height = options.height;
    that.image = options.image;

    return that;
}