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.

17 lines
276B

  1. namespace Svelto.ES
  2. {
  3. public interface INode
  4. {
  5. }
  6. public interface INodeWithReferenceID<out T> : INode where T : class
  7. {
  8. T ID { get; }
  9. }
  10. public interface INodeWithValueID<out T> : INode where T : struct
  11. {
  12. T ID { get; }
  13. }
  14. }