TechbloxModdingAPI/GamecraftModdingAPI/Events/IEventHandlerEngine.cs

21 lines
508 B
C#
Raw Permalink Normal View History

2019-12-13 20:42:55 -08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2019-12-13 20:42:55 -08:00
using Svelto.ECS;
using Svelto.ECS.Internal;
using GamecraftModdingAPI.Utility;
2019-12-13 20:42:55 -08:00
namespace GamecraftModdingAPI.Events
{
2019-12-14 10:52:24 -08:00
/// <summary>
/// Engine interface to handle ModEventEntityStruct events emitted by IEventEmitterEngines.
/// </summary>
public interface IEventHandlerEngine : IApiEngine, IReactOnAddAndRemove<ModEventEntityStruct>, IReactOnAddAndRemove
2019-12-13 20:42:55 -08:00
{
}
}