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

9 lines
163 B
C#
Raw Normal View History

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