DBCommand interface update & all other plugins were updated
This commit is contained in:
24
FreeGamesModule/Commands.cs
Normal file
24
FreeGamesModule/Commands.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using Discord.Commands;
|
||||
|
||||
using PluginManager.Interfaces;
|
||||
|
||||
namespace FreeGamesModule
|
||||
{
|
||||
public class Free : DBCommand
|
||||
{
|
||||
public string Command => "free";
|
||||
|
||||
public List<string>? Aliases => null;
|
||||
|
||||
public string Description => "Check out any free game";
|
||||
|
||||
public string Usage => "free";
|
||||
|
||||
public bool requireAdmin => false;
|
||||
|
||||
public void ExecuteServer(SocketCommandContext context)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user