7 lines
172 B
Haxe
7 lines
172 B
Haxe
|
package system.windows;
|
||
|
|
||
|
@:native("System.Windows.Window")
|
||
|
extern class Window extends FrameworkElement {
|
||
|
public function AddChild(child: FrameworkElement): Void;
|
||
|
}
|