示例#1
0
 private void onWorldSaved(WorldSavedEventArgs args)
 {
     if (_onWorldSaved != null)
         _onWorldSaved.Invoke(args);
 }
示例#2
0
 protected void OnWorldSaved(WorldSavedEventArgs args)
 {
     //Saving channels...
     //Some verbose info needed here
     Console.WriteLine("Channels saved!");
     Manager.Save();
 }
示例#3
0
 private void OnWorldSaved(WorldSavedEventArgs args)
 {
     //Need to save friend db
     //put this into the log file, when TPulse logger will not be static
     Console.WriteLine("Saving friends list...");
     FriendsList.Save(FriendsDB.DefaultFile);
 }