Capy64/Capy64/API/IPlugin.cs
Alessandro Proto 927a2e253a Added BinaryWriteHandle
Clean up of all the code
2023-01-14 18:16:35 +01:00

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) { }
}