TechbloxModdingAPI/GamecraftModdingAPI/Commands/ICustomCommandEngine.cs

24 lines
527 B
C#
Raw Normal View History

2019-12-14 04:42:55 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2019-12-14 04:42:55 +00:00
using Svelto.ECS;
using GamecraftModdingAPI.Utility;
2019-12-14 04:42:55 +00:00
namespace GamecraftModdingAPI.Commands
{
2019-12-15 07:20:20 +00:00
/// <summary>
/// Engine interface to handle command operations
/// </summary>
public interface ICustomCommandEngine : IApiEngine
2019-12-14 04:42:55 +00:00
{
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; }
}
}