// Felix-Bang:FBUIStart //   へ     /| //  /\7    ∠_/ //  / │   / / // │ Z _,< /   /`ヽ // │     ヽ   /  〉 //  Y     `  /  / // イ● 、 ●  ⊂⊃〈  / // ()  へ    | \〈 //  >ー 、_  ィ  │ // //  / へ   / ノ<| \\ //  ヽ_ノ  (_/  │// //  7       |/ //  >―r ̄ ̄`ー―_ // Describe:开始界面 // Createtime:2018/9/25 using System.Collections; using System.Collections.Generic; using UnityEngine; using FBFramework; namespace FBApplication { public class FBUIStart : FBView { public override string Name { get { return FBConsts.V_Start; } } public void GotoSelect() { FBGame.Instance.LoadScene(2); } public override void HandleEvent(string eventName, object data = null) {} } }