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

16 lines
326 B
C#
Raw Permalink 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
2025-11-03 10:36:56 +01:00
public class GardenerBehaviour : AppleMachine
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
}