namespace Sandbox.Navigation; public partial class NavMesh { /// /// Implement this interface to receive navmesh editor events. /// public interface IEventListener { /// /// Called when an area definition has changed or loaded/created. /// void OnAreaDefinitionChanged() { } } }