mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-01-19 02:56:43 +00:00
927a2e253a
Clean up of all the code
11 lines
208 B
C#
11 lines
208 B
C#
using KeraLua;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Capy64.API;
|
|
|
|
public interface IPlugin
|
|
{
|
|
void ConfigureServices(IServiceCollection services) { }
|
|
void LuaInit(Lua L) { }
|
|
|
|
}
|