コード例 #1
0
ファイル: SaveManager.cs プロジェクト: jordsti/TPulse
 private void onWorldSaved(WorldSavedEventArgs args)
 {
     if (_onWorldSaved != null)
         _onWorldSaved.Invoke(args);
 }
コード例 #2
0
ファイル: TChatChannels.cs プロジェクト: jordsti/TPulse
 protected void OnWorldSaved(WorldSavedEventArgs args)
 {
     //Saving channels...
     //Some verbose info needed here
     Console.WriteLine("Channels saved!");
     Manager.Save();
 }
コード例 #3
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);
 }