ModernUO/Projects/Server/Serialization
Kamron Batman e0225c6e59
fix: Adds generic entity persistence support and BOBEntry as entities (#1527)
### Summary
Adds a generic entity persistence. This can be used to create new entity types that have a `Serial`.

Here is an example:

```cs
public class BOBEntries : GenericEntitySerialization<IBOBEntry>
{
    public static void Configure()
    {
        Configure("BOBEntries");
    }
}
```

The annotation tells the system what folder to serialize the entries to. The class/interface (`IBOBEntry`) is the root type that implements `ISerializable`.
2023-10-01 17:38:52 -07:00
..
Attributes chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
AdhocPersistence.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
BinaryFileReader.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
BinaryFileWriter.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
BufferReader.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
BufferWriter.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
GenericEntitySerialization.cs fix: Adds generic entity persistence support and BOBEntry as entities (#1527) 2023-10-01 17:38:52 -07:00
GenericPersistence.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
IGenericReader.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
IGenericWriter.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
ISerializable.cs fix: Adds generic entity persistence support and BOBEntry as entities (#1527) 2023-10-01 17:38:52 -07:00
ISerializableExtensions.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
Persistence.cs chore: Updates copyright (#1448) 2023-08-09 09:09:26 -07:00
SerializationExtensions.cs fix: Adds generic entity persistence support and BOBEntry as entities (#1527) 2023-10-01 17:38:52 -07:00