Files
Articulate-Network/Interfaces/IManager.cs
Ryan 87a569ee9e Created Manager Initializer & Started on Packet Serializing/Deserializing
Manager Initializer initializes all managers found inheriting the IManager interface
Packet Manager
- Created LoadPacketInfo which gets PropertyInfo using reflection, and caches the returned information
- Started on Send<Packet>(Packet)
- Started on serializing packets to stream
- Started on packet deserializer
Created PacketIgnore attribute to ignore properties in a packet when serializing
2021-12-06 15:18:29 +10:00

14 lines
233 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Articulate_Network.Interfaces
{
public interface IManager
{
void Initialize();
}
}