26 lines
760 B
C#
26 lines
760 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using Svelto.ECS;
|
|
|
|
using GamecraftModdingAPI.Utility;
|
|
using GamecraftModdingAPI.Engines;
|
|
|
|
namespace GamecraftModdingAPI.Commands
|
|
{
|
|
/// <summary>
|
|
/// Engine interface to handle command operations.
|
|
/// If you are using implementing this yourself, you must manually register the command.
|
|
/// See SimpleCustomCommandEngine's Ready() and Dispose() methods for an example of command registration.
|
|
/// </summary>
|
|
public interface ICustomCommandEngine : IApiEngine
|
|
{
|
|
/// <summary>
|
|
/// The command's description, shown in command help messages
|
|
/// </summary>
|
|
string Description { get; }
|
|
}
|
|
}
|