A stable modding interface between Techblox and mods https://mod.exmods.org/
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

27 lines
647B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Svelto.ECS;
  7. namespace TechbloxModdingAPI.Engines
  8. {
  9. /// <summary>
  10. /// Base engine interface used by all TechbloxModdingAPI engines
  11. /// </summary>
  12. public interface IApiEngine : IEngine, IQueryingEntitiesEngine, IDisposable
  13. {
  14. /// <summary>
  15. /// The name of the engine
  16. /// </summary>
  17. string Name { get; }
  18. /// <summary>
  19. /// Whether the emitter can be removed with Manager.RemoveEventEmitter(name)
  20. /// </summary>
  21. bool isRemovable { get; }
  22. }
  23. }