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.

EntityReferenceHolderImplementor.cs 306B

12345678910111213
  1. #if UNITY_5 || UNITY_5_3_OR_NEWER
  2. using Svelto.ECS.Hybrid;
  3. using UnityEngine;
  4. namespace Svelto.ECS.Extensions.Unity
  5. {
  6. [DisallowMultipleComponent]
  7. public class EntityReferenceHolderImplementor : MonoBehaviour, IImplementor
  8. {
  9. public EntityReference reference { get; set; }
  10. }
  11. }
  12. #endif