Ejemplo n.º 1
0
 /// <summary>
 /// Makes a new IRC channel object with the given IRC object as it's server.
 /// </summary>
 /// <param name="parent">The IRC object that represents the server connection.</param>
 public IRCChannel(IRC parent)
 {
     this.Parent = parent;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Makes a new IRCUser object with the given IRC object as it's server.
 /// </summary>
 /// <param name="parent">The IRC object that represents the server connection.</param>
 public IRCUser(IRC parent)
 {
     this.Parent = parent;
 }