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.

16 line
510B

  1. #if SLOW_SVELTO_SUBMISSION
  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. /// It will become obsolete over the time
  10. /// </summary>
  11. public interface INeedEntityReference
  12. {
  13. EntityReference selfReference { get; set; }
  14. }
  15. }
  16. #endif