Files
GameJamDungeon/Zennysoft.Game.Abstractions/Entity/IEntity.cs

12 lines
196 B
C#

namespace Zennysoft.Game.Abstractions.Entity
{
public interface IAction
{
public Task PerformAction();
}
public interface IAction<T>
{
public Task PerformAction(T arg);
}
}