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-15 16:35:59 -08:00
|
|
|
|
|
2019-12-13 20:42:55 -08:00
|
|
|
|
using Svelto.ECS;
|
|
|
|
|
|
|
|
|
|
namespace GamecraftModdingAPI.Events
|
|
|
|
|
{
|
2019-12-14 10:52:24 -08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The event entity struct
|
|
|
|
|
/// </summary>
|
2020-04-28 15:55:08 +02:00
|
|
|
|
public struct ModEventEntityStruct : IEntityComponent, INeedEGID
|
2019-12-13 20:42:55 -08:00
|
|
|
|
{
|
2019-12-14 10:52:24 -08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The type of event that has been emitted
|
|
|
|
|
/// </summary>
|
2020-04-02 13:08:05 -04:00
|
|
|
|
public int type;
|
|
|
|
|
|
|
|
|
|
public EGID ID { get; set; }
|
|
|
|
|
}
|
2019-12-13 20:42:55 -08:00
|
|
|
|
}
|