Files
OldThink/Content.Shared/CharacterAppearance/ICharacterAppearance.cs

10 lines
180 B
C#
Raw Normal View History

#nullable enable
2021-06-09 22:19:39 +02:00
namespace Content.Shared.CharacterAppearance
{
public interface ICharacterAppearance
{
bool MemberwiseEquals(ICharacterAppearance other);
}
}