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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
13
FreeGamesModule/FreeGamesModule.csproj
Normal file
13
FreeGamesModule/FreeGamesModule.csproj
Normal file
@@ -0,0 +1,13 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\PluginManager\PluginManager.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user