var login = (function(_super){
function login(){
login.super(this);
var stageWidth = Laya.stage.width;
var stageHeight = Laya.stage.height;
console.log(stageWidth*0.05+":"+stageHeight);
var path = [
["moveTo",stageWidth*0.05,0],
["actTo",stageWidth*0.8,0,stageWidth*0.8,stageHeight*0.05,10],
["actTo",stageWidth*0.8,stageHeight*0.6,stageWidth*0.75,stageHeight*0.6,10],
["actTo",0,stageHeight*0.6,0,stageHeight*0.55,10],
["actTo",0,0,stageWidth*0.05,0,10],
];
this.graphics.drawPath(0,0,path,{fillStyle: "#ff0000"},{"strokeStyle":"#ffffff","lineWidth":"1"});
}
Laya.class(login,"login",_super);
var _proto = login.prototype;
return login;
})(Laya.Sprite);