2019-12-14 04:42:55 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Svelto.ECS;
|
|
|
|
|
|
|
|
|
|
namespace GamecraftModdingAPI.Commands
|
|
|
|
|
{
|
2019-12-15 07:20:20 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Engine interface to handle command operations
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ICustomCommandEngine : IEngine, IQueryingEntitiesEngine, IDisposable
|
2019-12-14 04:42:55 +00:00
|
|
|
|
{
|
2019-12-15 07:20:20 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The name of the command
|
|
|
|
|
/// </summary>
|
2019-12-14 04:42:55 +00:00
|
|
|
|
string Name { get; }
|
|
|
|
|
|
2019-12-15 07:20:20 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The command's description, shown in command help messages
|
|
|
|
|
/// </summary>
|
2019-12-14 04:42:55 +00:00
|
|
|
|
string Description { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|