TechbloxModdingAPI/GamecraftModdingAPI/Commands/ICustomCommandEngine.cs
2019-12-25 14:25:53 -05:00

24 lines
527 B
C#

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