using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Svelto.ECS;
using Svelto.ECS.Hybrid;
namespace GamecraftModdingAPI.Events
{
///
/// The event entity struct
///
public struct ModEventEntityStruct : IEntityStruct
{
///
/// The type of event that has been emitted
///
public object type;
}
}