void Awake() { _creepBase = GetComponent<CreepBase>(); }
void Start() { _creepBase = GetComponent<CreepBase>(); _creepBase.CreepController.moveHorizontal += OnMove; _playerBase = GameObject.FindGameObjectWithTag (Tags.PLAYER).GetComponent<PlayerBase> (); }