Skip to content
This repository has been archived by the owner on Jun 17, 2020. It is now read-only.

velddev/IA.SDK

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 

Repository files navigation

IA.SDK

SDK library for the IA Framework

Addon tutorial

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.

Notable Bots using this system

Galaco (https://github.com/velddev/galaco)
Miki (https://github.com/velddev/miki)

Releases

No releases published

Packages

No packages published

Languages