Ejemplo n.º 1
0
 /// <summary>
 /// Raises the <see cref="E:BotAssemblySaved"/> event.
 /// </summary>
 /// <param name="e">The <see cref="DG.BotWorld.Hosting.BotAssemblySavedEventArgs"/> instance containing the event data.</param>
 protected virtual void OnBotAssemblySaved(BotAssemblySavedEventArgs e)
 {
     if (BotAssemblySaved != null)
     {
         BotAssemblySaved(this, e);
     }
 }
Ejemplo n.º 2
0
 void Host_BotAssemblySaved(object sender, DG.BotWorld.Hosting.BotAssemblySavedEventArgs e)
 {
     //BotPersister.SaveBot(e.Bot.Name);
 }