//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.GameLogic;
///
/// Interface for an object which supports to set the .
///
public interface ISupportIdUpdate : IIdentifiable
{
///
/// Gets or sets the identifier.
///
new ushort Id { get; set; }
}