2019-12-14 04:42:55 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2019-12-16 00:35:59 +00:00
|
|
|
|
|
2019-12-14 04:42:55 +00:00
|
|
|
|
using Svelto.ECS;
|
|
|
|
|
using Svelto.ECS.Internal;
|
|
|
|
|
|
2020-05-12 00:28:26 +00:00
|
|
|
|
using GamecraftModdingAPI.Engines;
|
2019-12-16 00:35:59 +00:00
|
|
|
|
|
2019-12-14 04:42:55 +00:00
|
|
|
|
namespace GamecraftModdingAPI.Events
|
|
|
|
|
{
|
2019-12-14 18:52:24 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Engine interface to handle ModEventEntityStruct events emitted by IEventEmitterEngines.
|
|
|
|
|
/// </summary>
|
2020-08-03 02:39:26 +00:00
|
|
|
|
[Obsolete]
|
2020-05-12 00:28:26 +00:00
|
|
|
|
public interface IEventHandlerEngine : IReactionaryEngine<ModEventEntityStruct>
|
2019-12-14 04:42:55 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|