G1ANT ADDON
HOW TO CREATE ADDON IN SIMPLE STEPS: Download visual studio 2019( https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=Community&rel=16 ) ADD SDK file in it(go to GitHub and download from manual it's available)( https://github.com/G1ANT-Robot/G1ANT.Sdk ) Create a project While opening the studio go to project>nuget package>unistall old>install new. Then in the left, we can see a box right click>class>name while naming class always put .cs so execute the program>run using System ; using System . Collections . Generic ; using System . Linq ; using System . Text ; using System . Threading . Tasks ; using G1ANT . Language ; namespace G1ANT . Addon . MyAddon { [ Command ( Name = " mycommand " , Tooltip = " This is a demo command. " )] class MyCommand : Command { public MyCommand ( AbstractScripter scripter ) : base ( scripter ) { } public class Arguments : Comm...