//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.GameLogic;
///
/// Interface for a identifiable object.
///
public interface IIdentifiable
{
///
/// Gets the identifier.
///
ushort Id { get; }
}