13 lines
177 B
C#
13 lines
177 B
C#
|
|
|||
|
namespace Network.PacketHandling {
|
|||
|
public class Protocol {
|
|||
|
|
|||
|
private Peer Peer;
|
|||
|
|
|||
|
public Protocol(Peer peer) {
|
|||
|
Peer = peer;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|