Hey, does anyone have an insim based on InSim.NET.. I want an example because i don't understand how and where i need to paste this " https://insimdotnet.codeplex.com/wikipage?title=InSim&referringTitle=Documentation "
IS_BTN b = new IS_BTN { /* Whatever button parameters you wish */ };
inSim.Send(b);
void CreateButton(string Text)
{
IS_BTN b = new IS_BTN { Text=Text };
inSim.Send(b);
}
insim.Bind<IS_BTC>(OnButtonClick);
static void OnButtonClick(InSim insim, IS_BTC btc)
{
// Your code here to handle button clicks
}