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
757B

  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 TechbloxModdingAPI.Utility;
  8. using TechbloxModdingAPI.Engines;
  9. namespace TechbloxModdingAPI.Commands
  10. {
  11. /// <summary>
  12. /// Engine interface to handle command operations.
  13. /// If you are using implementing this yourself, you must manually register the command.
  14. /// See SimpleCustomCommandEngine's Ready() and Dispose() methods for an example of command registration.
  15. /// </summary>
  16. public interface ICustomCommandEngine : IApiEngine
  17. {
  18. /// <summary>
  19. /// The command's description, shown in command help messages
  20. /// </summary>
  21. string Description { get; }
  22. }
  23. }