Files
ZeroVR/ZeroPacientVR/Assets/Octave3D World Builder/Scripts/Entities/Named Entities/INamedEntity.cs
T
2022-04-18 19:17:20 +03:00

13 lines
202 B
C#

#if UNITY_EDITOR
using UnityEngine;
namespace O3DWB
{
public interface INamedEntity
{
#region Interface Properties
string Name { get; set; }
#endregion
}
}
#endif