A stable modding interface between Techblox and mods https://mod.exmods.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
591B

  1. using TechbloxModdingAPI.Common;
  2. namespace TechbloxModdingAPI.Commands
  3. {
  4. /// <summary>
  5. /// Engine interface to handle command operations.
  6. /// If you are using implementing this yourself, you must manually register the command.
  7. /// See SimpleCustomCommandEngine's Ready() and Dispose() methods for an example of command registration.
  8. /// </summary>
  9. public interface ICustomCommandEngine : INamedApiEngine
  10. {
  11. /// <summary>
  12. /// The command's description, shown in command help messages
  13. /// </summary>
  14. string Description { get; }
  15. }
  16. }