WonStateScene2

using UnityEngine;
using Assets.Code.Interfaces;

namespace Assets.Code.States
{
  public class WonStateScene2 : IStateBase
  {
    private StateManager manager;

    public WonStateScene2 (StateManager managerRef)
    {
      manager = managerRef;
      if(Application.loadedLevelName != "Scene0")
        Application.LoadLevel("Scene0");
    }

    public void StateUpdate()
    {
      if (Input.GetKeyUp (KeyCode.Space)) 
      {
        manager.Restart();
      }
    }

    public void ShowIt()
    {
      Debug.Log("In WonStateScene2");
    }
  }
}
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.135.213.212