2019-12-16 00:35:59 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
using Svelto.ECS;
|
|
|
|
|
|
2020-05-12 00:28:26 +00:00
|
|
|
|
namespace GamecraftModdingAPI.Engines
|
2019-12-16 00:35:59 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Base engine interface used by all GamecraftModdingAPI engines
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IApiEngine : IEngine, IQueryingEntitiesEngine, IDisposable
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The name of the engine
|
|
|
|
|
/// </summary>
|
|
|
|
|
string Name { get; }
|
2020-05-12 00:28:26 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the emitter can be removed with Manager.RemoveEventEmitter(name)
|
|
|
|
|
/// </summary>
|
|
|
|
|
bool isRemovable { get; }
|
2019-12-16 00:35:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|