18 lines
345 B
C#
18 lines
345 B
C#
using Core;
|
|
using Core.SaveLoad;
|
|
using Pixelplacement;
|
|
|
|
public class LawnMowerBehaviour : SaveableStateMachine
|
|
{
|
|
public void mowerTouched()
|
|
{
|
|
Logging.Debug("Mower Touched");
|
|
}
|
|
|
|
public void stateSwitch(string StateName)
|
|
{
|
|
Logging.Debug("State Switch to: " + StateName);
|
|
ChangeState(StateName);
|
|
}
|
|
}
|