added popupmanager & animates

This commit is contained in:
2015-06-30 11:11:10 +03:00
parent 462ee023c3
commit 38ceb7eecb
10 changed files with 240 additions and 37 deletions

View File

@@ -0,0 +1,8 @@
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>;
}