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>
|
2019-12-13 20:42:55 -08:00
|
|
|
|
public struct ModEventEntityStruct : IEntityStruct
|
|
|
|
|
{
|
2019-12-14 10:52:24 -08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The type of event that has been emitted
|
|
|
|
|
/// </summary>
|
2019-12-13 20:42:55 -08:00
|
|
|
|
public object type;
|
|
|
|
|
}
|
|
|
|
|
}
|