void Start () { player = GetComponent<PlayerController>(); }
public void Update(PlayerController player) { UpdateCurrentAction(player); AdvanceToNextActionIfAppropriate(player); }
public GentlemansSingleton() { activePlayer = null; }
public static void SetPlayer(PlayerController player) { activePlayer = player; }