Files
AppleHillsProduction/Assets/Scripts/DamianExperiments/LawnMowerPuzzle/GardenerBehaviour.cs

16 lines
334 B
C#
Raw Normal View History

using System.Security.Cryptography.X509Certificates;
using Core;
using Core.SaveLoad;
using Pixelplacement;
using UnityEngine;
2025-09-11 10:44:01 +02:00
public class GardenerBehaviour : SaveableStateMachine
2025-09-11 10:44:01 +02:00
{
public void stateSwitch (string StateName)
{
Logging.Debug("State Switch to: " + StateName);
ChangeState(StateName);
}
2025-09-11 10:44:01 +02:00
}