8 lines
158 B
Haxe
8 lines
158 B
Haxe
package lib.ui.elements;
|
|
|
|
import lib.ui.rendere.UIEventDelegate;
|
|
|
|
interface UIElement extends UIEventDelegate {
|
|
public function render(bounds:Pos):Canvas;
|
|
}
|