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