コード例 #1
0
 internal static T GetPanel <T>() where T : UIPanel
 {
     return(UIKit.GetPanel <T>());
 }
コード例 #2
0
 public static UIPanel GetPanel(string panelName)
 {
     return(UIKit.GetPanel(panelName));
 }
コード例 #3
0
ファイル: UIPanelStack.cs プロジェクト: zyun22/QFramework
 public void Push <T>() where T : UIPanel
 {
     Push(UIKit.GetPanel <T>());
 }