Mirror of Svelto.ECS because we're a fan of it
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

INeedEntityReference.cs 459B

123456789101112131415
  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. }