TechbloxModdingAPI/GamecraftModdingAPI/Events/ModEventEntityStruct.cs

24 lines
478 B
C#
Raw Normal View History

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