ronin/scripts/rect.js
2016-11-12 15:01:43 -08:00

5 lines
82 B
JavaScript

function Rect(w = 0,h = 0)
{
this.w = parseFloat(w);
this.h = parseFloat(h);
}