Moves Item/Mobile locks to a handler. (#34)

This commit is contained in:
Kamron Batman 2019-03-15 11:05:26 -07:00 committed by GitHub
parent cf90a58bea
commit de50bc9e43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 876 additions and 1055 deletions

View file

@ -24,6 +24,14 @@ using Server.Network;
namespace Server
{
public interface IPropertyListObject : IEntity
{
ObjectPropertyList PropertyList{ get; }
OPLInfo OPLPacket{ get; }
void GetProperties(ObjectPropertyList list);
}
public sealed class ObjectPropertyList : Packet
{
private static byte[] m_Buffer = new byte[1024];
@ -191,4 +199,4 @@ namespace Server
m_Stream.Write(list.Hash);
}
}
}
}