16 lines
334 B
C#
16 lines
334 B
C#
using System.Security.Cryptography.X509Certificates;
|
|
using Core;
|
|
using Core.SaveLoad;
|
|
using Pixelplacement;
|
|
using UnityEngine;
|
|
|
|
|
|
public class GardenerBehaviour : SaveableStateMachine
|
|
{
|
|
public void stateSwitch (string StateName)
|
|
{
|
|
Logging.Debug("State Switch to: " + StateName);
|
|
ChangeState(StateName);
|
|
}
|
|
}
|