예제 #1
0
 private void onWorldSaved(WorldSavedEventArgs args)
 {
     if (_onWorldSaved != null)
     {
         _onWorldSaved.Invoke(args);
     }
 }
예제 #2
0
파일: TFriends.cs 프로젝트: jordsti/TPulse
 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);
 }
예제 #3
0
 protected void OnWorldSaved(WorldSavedEventArgs args)
 {
     //Saving channels...
     //Some verbose info needed here
     Console.WriteLine("Channels saved!");
     Manager.Save();
 }