view type removed

This commit is contained in:
2015-07-10 19:52:21 +03:00
parent 7fb65137fa
commit f53b065d59
38 changed files with 163 additions and 160 deletions

View File

@@ -2,7 +2,7 @@ package haxework.gui.frame;
import haxework.gui.IView;
interface IFrameSwitcher<C:Content> extends IView<C> {
public var current(default, null):Null<IView<Dynamic>>;
public function change(id:String):IView<Dynamic>;
interface IFrameSwitcher extends IView {
public var current(default, null):Null<IView>;
public function change(id:String):IView;
}