SDK library for the IA Framework
There are a few steps you have to set up a SDK addon project.
1: Set up a C# class library project.
2: Download the SDK and add it as a dependency
3: Add this snippet as your starting class.
public class Addon : IAddon
{
public async Task<IAddonInstance> Create(IAddonInstance addon)
{
// Do code and define 'addon'
return addon;
}
}
use the addon object to add commands and modules, it will be initialized on runtime.
Galaco (https://github.com/velddev/galaco)
Miki (https://github.com/velddev/miki)