Networking Continued, template classes finished. Next I'll add actual functionality.
This commit is contained in:
parent
3227210590
commit
27a1f617b8
3 changed files with 54 additions and 8 deletions
22
MudEngine/Networking/ClientSocket.cs
Normal file
22
MudEngine/Networking/ClientSocket.cs
Normal file
|
@ -0,0 +1,22 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using MudEngine.Networking.Socket;
|
||||
|
||||
// TODO: everything D:
|
||||
|
||||
namespace MudEngine.Networking
|
||||
{
|
||||
class ClientSocket : Socket
|
||||
{
|
||||
public ClientSocket()
|
||||
{
|
||||
}
|
||||
public ~ClientSocket()
|
||||
{
|
||||
}
|
||||
|
||||
public string ip;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue