12345678910111213141516171819202122232425262728 |
- using UnityEngine;
- using System.Collections;
- public class BattleInitializer : MonoBehaviour
- {
- public enum Step
- {
- CreatingMap,
- JoinBattle,
- GettingPlayers,
- CreatingCraft,
- Complete,
- }
- // Use this for initialization
- void Start ()
- {
-
- }
-
- // Update is called once per frame
- void Update ()
- {
-
- }
- }
|