INamedEntity.cs 202 B

12345678910111213
  1. #if UNITY_EDITOR
  2. using UnityEngine;
  3. namespace O3DWB
  4. {
  5. public interface INamedEntity
  6. {
  7. #region Interface Properties
  8. string Name { get; set; }
  9. #endregion
  10. }
  11. }
  12. #endif