Files
real-shooter/Assets/Scripts/Character/Interfaces/ICharacter.cs
2022-05-04 23:50:07 +07:00

5 lines
97 B
C#

public interface ICharacter
{
Character GetCharacter { get; }
void ResetCharacter();
}