Add door interaction system with state management and event publishing
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using GameCore.ECS;
|
||||
|
||||
namespace GameCore.Interaction.Interfaces;
|
||||
|
||||
public interface IInteractionRequirement
|
||||
{
|
||||
bool IsMet(Entity interactor, World world);
|
||||
void ApplySideEffects(Entity interactor, World world);
|
||||
}
|
||||
Reference in New Issue
Block a user