Files
brick-framework/GameCore/Logic/Interfaces/ITriggerAction.cs

8 lines
125 B
C#

using GameCore.ECS;
namespace GameCore.Logic.Interfaces;
public interface ITriggerAction
{
void Execute(World world);
}