using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.Networking; public class GameShow : BaseShow { public override void OnClick() { if (BaseController.CanControl) { BaseController.CanControl = false; AudioManager.Instance.PauseBackgroundMusic(); BundleLoader.Instance.LoadBundle(info.GameName); } } }