InNewBattle.cs 313 B

12345678910111213141516
  1. using UnityEngine;
  2. using UnityEngine.UI;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using System;
  6. public class InNewBattle : MonoBehaviour
  7. {
  8. // Use this for initialization
  9. void Start()
  10. {
  11. AssemblyHelper.Instance.BindScript("Entrance_NewBattle", this.gameObject);
  12. }
  13. }