Files
real-shooter/Assets/Scripts/Character/Interfaces/ICharacter.cs
2022-05-16 01:13:50 +07:00

10 lines
182 B
C#

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