Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 line
285B

  1. using Svelto.DataStructures;
  2. namespace Svelto.ECS.Serialization
  3. {
  4. public interface ISerializationData
  5. {
  6. uint dataPos { get; set; }
  7. FasterList<byte> data { get; }
  8. void ReuseAsNew();
  9. void Reset();
  10. void BeginNextEntityComponent();
  11. }
  12. }