Mirror of Svelto.ECS because we're a fan of it
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

11 řádky
230B

  1. namespace Svelto.ECS
  2. {
  3. ///<summary>Entity Components MUST implement IEntityComponent</summary>
  4. public interface IBaseEntityComponent
  5. {
  6. }
  7. public interface IEntityComponent:IBaseEntityComponent
  8. {
  9. }
  10. }