8 lines
125 B
C#
8 lines
125 B
C#
using GameCore.ECS;
|
|
|
|
namespace GameCore.Logic.Interfaces;
|
|
|
|
public interface ITriggerAction
|
|
{
|
|
void Execute(World world);
|
|
} |