// Copyright (c) 2013-2014 Robert Rouhani and other contributors (see CONTRIBUTORS file). // Licensed under the MIT License - https://raw.github.com/Robmaister/SharpNav/master/LICENSE namespace SharpNav.Collections.Generic { /// /// An interface that defines a class containing a cost associated with the instance. /// Used in /// public interface IValueWithCost { /// /// Gets the cost of this instance. /// float Cost { get; } } }