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:
@@ -0,0 +1,20 @@
|
||||
using Articulate_Network.Interfaces;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Articulate_Network.Managers
|
||||
{
|
||||
public class PacketManager : IManager
|
||||
{
|
||||
List<IPacket> packets = new List<IPacket>();
|
||||
|
||||
public void Initialize()
|
||||
{
|
||||
Console.WriteLine(Assembly.GetEntryAssembly());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user