8 lines
191 B
Haxe
Executable File
8 lines
191 B
Haxe
Executable File
package haxework.gui.frame;
|
|
|
|
import haxework.gui.IView;
|
|
|
|
interface IFrameSwitcher extends IView {
|
|
public var current(default, null):Null<IView>;
|
|
public function change(id:String):IView;
|
|
} |