Delta-v/Content.Shared/Preferences/ICharacterProfile.cs

10 lines
235 B
C#

namespace Content.Shared.Preferences
{
public interface ICharacterProfile
{
string Name { get; }
ICharacterAppearance CharacterAppearance { get; }
bool MemberwiseEquals(ICharacterProfile other);
}
}