2023-10-03 00:42:49 -07:00
|
|
|
/*************************************************************************
|
|
|
|
|
* ModernUO *
|
2024-06-23 10:51:20 -07:00
|
|
|
* Copyright 2019-2024 - ModernUO Development Team *
|
2023-10-03 00:42:49 -07:00
|
|
|
* Email: hi@modernuo.com *
|
2024-06-23 10:51:20 -07:00
|
|
|
* File: IGenericSerializable.cs *
|
2023-10-03 00:42:49 -07:00
|
|
|
* *
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or *
|
|
|
|
|
* (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
|
|
namespace Server;
|
|
|
|
|
|
|
|
|
|
public interface IGenericSerializable
|
|
|
|
|
{
|
2024-09-14 09:57:43 -07:00
|
|
|
byte SerializedThread { get; set; }
|
|
|
|
|
int SerializedPosition { get; set; }
|
|
|
|
|
int SerializedLength { get; set; }
|
|
|
|
|
|
2024-06-23 10:51:20 -07:00
|
|
|
void Serialize(IGenericWriter writer);
|
2023-10-03 00:42:49 -07:00
|
|
|
}
|