TechbloxModdingAPI/GamecraftModdingAPI/Commands/ICustomCommandEngine.cs
2019-12-14 23:20:20 -08:00

25 lines
636 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Svelto.ECS;
namespace GamecraftModdingAPI.Commands
{
/// <summary>
/// Engine interface to handle command operations
/// </summary>
public interface ICustomCommandEngine : IEngine, IQueryingEntitiesEngine, IDisposable
{
/// <summary>
/// The name of the command
/// </summary>
string Name { get; }
/// <summary>
/// The command's description, shown in command help messages
/// </summary>
string Description { get; }
}
}