cc-haxe/src/lib/ui/elements/UIElement.hx
2023-07-30 15:55:22 +02:00

8 lines
158 B
Haxe

package lib.ui.elements;
import lib.ui.rendere.UIEventDelegate;
interface UIElement extends UIEventDelegate {
public function render(bounds:Pos):Canvas;
}