chuck.js/editor/script/Button.js
2012-06-13 17:32:31 +02:00

14 lines
No EOL
221 B
JavaScript

// Button Class
function Button(x, y, width, height, callback)
{
this.x = x;
this.y = y;
this.width = width;
this.height = height;
this.callback = callback;
this.Press = function()
{
this.callback.call();
};
}