This commit is contained in:
2022-05-15 18:24:43 +07:00
parent abf262095f
commit bb6aea8720
22 changed files with 5008 additions and 170 deletions

View File

@ -1,5 +1,8 @@
public interface ICharacter
using System;
public interface ICharacter
{
Character GetCharacter { get; }
void ResetCharacter();
event Action<bool> OnDeathEvent;
}