A stable modding interface between Techblox and mods https://mod.exmods.org/
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

21 rinda
481B

  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. using Svelto.ECS.Internal;
  8. using TechbloxModdingAPI.Engines;
  9. namespace TechbloxModdingAPI.Events
  10. {
  11. /// <summary>
  12. /// Engine interface to handle ModEventEntityStruct events emitted by IEventEmitterEngines.
  13. /// </summary>
  14. [Obsolete]
  15. public interface IEventHandlerEngine : IReactionaryEngine<ModEventEntityStruct>
  16. {
  17. }
  18. }