Files
real-shooter/Assets/Scripts/Character/Interfaces/ICharacter.cs
2022-05-15 18:24:43 +07:00

8 lines
149 B
C#

using System;
public interface ICharacter
{
Character GetCharacter { get; }
void ResetCharacter();
event Action<bool> OnDeathEvent;
}