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.

15 lines
459B

  1. using Svelto.ECS.Reference;
  2. namespace Svelto.ECS
  3. {
  4. /// <summary>
  5. /// The use of this is an exception and it's necessary for deprecated design only
  6. /// It currently exist because of the publisher/consumer behavior, but the publisher/consumer must not be
  7. /// considered an ECS pattern.
  8. /// Other uses are invalid.
  9. /// </summary>
  10. public interface INeedEntityReference
  11. {
  12. EntityReference selfReference { get; set; }
  13. }
  14. }