Files
OldThink/Content.Shared/Preferences/ICharacterProfile.cs

10 lines
235 B
C#
Raw Normal View History

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