ModernUO/Projects
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
..
Server fix: Adds generic entity persistence support and BOBEntry as entities (#1527) 2023-10-01 17:38:52 -07:00
Server.Tests fix: Optimizes FindItemsByType by removing allocations. (#1515) 2023-09-28 19:36:45 -07:00
UOContent fix: Adds generic entity persistence support and BOBEntry as entities (#1527) 2023-10-01 17:38:52 -07:00
UOContent.Tests chore(deps): Bump xunit.runner.visualstudio from 2.5.0 to 2.5.1 (#1504) 2023-09-18 16:37:53 -07:00