Files
lime/tools/project/SplashScreen.hx
2014-09-30 17:41:57 -07:00

32 lines
456 B
Haxe

package project;
class SplashScreen {
public var height:Int;
public var path:String;
public var width:Int;
public function new (path:String, width:Int = 0, height:Int = 0) {
this.path = path;
this.width = width;
this.height = height;
}
public function clone ():SplashScreen {
var splashScreen = new SplashScreen (path);
splashScreen.width = width;
splashScreen.height = height;
return splashScreen;
}
}