28 lines
455 B
Haxe
28 lines
455 B
Haxe
package game.ui;
|
|
|
|
import openfl.geom.Point;
|
|
import openfl.display.Sprite;
|
|
|
|
|
|
class UIContianer extends Sprite{
|
|
public static var UIDrawList:Array<UIElement>=[];
|
|
public var anchor:Point;
|
|
public function new(panchor,scale){
|
|
super();
|
|
}
|
|
public function onResize(){
|
|
|
|
}
|
|
public function hide(){
|
|
|
|
}
|
|
public function show(){
|
|
|
|
}
|
|
public function getParent()
|
|
{
|
|
return parent;
|
|
}
|
|
|
|
}
|