Beispiel #1
0
 public ChannelManager(string channelsFile)
 {
     ChannelsFile   = TPulsePaths.Combine(TPulsePath.SavePath, channelsFile);
     DefaultChannel = null;
     LoadChannelsFile();
 }
Beispiel #2
0
 public Channel(string name, Color textColor)
 {
     TextColor  = textColor;
     Name       = name;
     ChannelLog = new ChatLogger(Path.Combine(TPulsePaths.GetPath(TPulsePath.SavePath), ChatLogFolder, Name + ".txt"));
 }
Beispiel #3
0
 public FriendsDB()
 {
     DefaultFile = TPulsePaths.Combine(TPulsePath.SavePath, "friends.db");
 }