20 lines
439 B
C#
20 lines
439 B
C#
using Content.Shared.CharacterAppearance;
|
|
|
|
|
|
namespace Content.Shared.Preferences
|
|
{
|
|
public interface ICharacterProfile
|
|
{
|
|
string Name { get; }
|
|
|
|
ICharacterAppearance CharacterAppearance { get; }
|
|
|
|
bool MemberwiseEquals(ICharacterProfile other);
|
|
|
|
/// <summary>
|
|
/// Makes this profile valid so there's no bad data like negative ages.
|
|
/// </summary>
|
|
void EnsureValid();
|
|
}
|
|
}
|