namespace Fungus { /// /// Interface for providing a human readable path to an element, used in editor code to determine where /// something exists elsewhere in the scene. /// public interface IStringLocationIdentifier { string GetLocationIdentifier(); } }