Serialization interfaces (#62)

This commit is contained in:
Leath Cooper 2019-12-30 15:16:35 -05:00 committed by Kamron Batman
parent 5e2be2d7b6
commit 5c8821b11c
2406 changed files with 10100 additions and 9350 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Server
{
public interface ISerializable
{
BufferWriter SaveBuffer { get; }
int TypeReference { get; }
uint SerialIdentity { get; }
void Serialize();
void Serialize(IGenericWriter writer);
}
}