1
0
mirror of https://github.com/deavminet/dnetd synced 2024-09-21 09:43:37 +02:00
dnetd_old/source/dnetd/dchannel.d
Tristan 🅱. Kildaire 7e1e361c21 Added 'join' command
2020-09-23 18:52:11 +02:00

41 lines
474 B
D

/**
* DChannel
*
* Represents a channel and its
* associated information such
* as its name, topic, members
*/
module dnetd.dchannel;
import dnetd.dconnection : DConnection;
public class DChannel
{
/**
* Channel information
*/
private string name;
//private string topic;
/**
* Users in this channel
*/
private DConnection[] members;
this(string name)
{
}
public string getName()
{
return name;
}
public void join(DConnection client)
{
}
}