Cromon

Untitled

Aug 28th, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var testControl = function () {
  2.     UI.makeControl(this);
  3.  
  4.     this.quad = new Quad();
  5.  
  6.     this.quad.setPosition(160, 20);
  7.     this.quad.setSize(256, 256);
  8.     this.quad.setTexture("tileset\\ashenvale\\ashenvaleferns.blp");
  9. }
  10.  
  11. testControl.prototype.onDraw = function () {
  12.     this.quad.draw();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment