using Core.SaveLoad; using Core; using UnityEngine; public class ButterFlyState : AppleMachine { public void stateSwitch(string StateName) { Logging.Debug("State Switch to: " + StateName); ChangeState(StateName); } }