Mirror of Svelto.ECS because we're a fan of it
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

9 lines
167B

  1. #if SLOW_SVELTO_SUBMISSION
  2. namespace Svelto.ECS
  3. {
  4. public struct EGIDComponent:IEntityComponent, INeedEGID
  5. {
  6. public EGID ID { get; set; }
  7. }
  8. }
  9. #endif