Files

12 lines
207 B
C#
Raw Normal View History

2023-01-23 18:31:58 +02:00
using UnityEngine;
public class GiveUpState : State
{
public override void UpdateLogic(PlayerNetwork player)
{
if (!player.enter)
{
player.enter = true;
}
}
}