Files
David Kalatzis 9297c6f2bb Minor update
2023-01-23 18:31:58 +02:00

12 lines
207 B
C#

using UnityEngine;
public class GiveUpState : State
{
public override void UpdateLogic(PlayerNetwork player)
{
if (!player.enter)
{
player.enter = true;
}
}
}