cc-haxe/src/lib/ui/IElement.hx
2021-12-20 01:55:30 +01:00

8 lines
118 B
Haxe

package lib.ui;
import util.Vec.Vec2;
interface IElement {
public function render(bounds: Vec2<Int>): Canvas;
}