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
This commit is contained in:
13
Attributes/PacketIgnore.cs
Normal file
13
Attributes/PacketIgnore.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.Attributes
|
||||
{
|
||||
public class PacketIgnore : System.Attribute
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user