Initial Server & Client Commit
Started on Interfaces - Created IManager - Created IPacket Started on Managers - Created Packet Manager Started on async client/server implementation
This commit is contained in:
13
Interfaces/IManager.cs
Normal file
13
Interfaces/IManager.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Articulate_Network.Interfaces
|
||||
{
|
||||
interface IManager
|
||||
{
|
||||
void Initialize();
|
||||
}
|
||||
}
|
||||
13
Interfaces/IPacket.cs
Normal file
13
Interfaces/IPacket.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Articulate_Network.Interfaces
|
||||
{
|
||||
public interface IPacket
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user