MemoryPackRegister.cs 339 B

12345678910111213
  1. using MemoryPack;
  2. namespace ET
  3. {
  4. public static class MemoryPackRegister
  5. {
  6. public static void Init()
  7. {
  8. MemoryPackFormatterProvider.Register(new MemoryPackChildrenCollectionFormatter());
  9. MemoryPackFormatterProvider.Register(new MemoryPackComponentsCollectionFormatter());
  10. }
  11. }
  12. }