Files
tbd-station-14/Content.Shared/CharacterAppearance/ICharacterAppearance.cs
2021-06-09 22:19:39 +02:00

10 lines
180 B
C#

#nullable enable
namespace Content.Shared.CharacterAppearance
{
public interface ICharacterAppearance
{
bool MemberwiseEquals(ICharacterAppearance other);
}
}