1
This commit is contained in:
@@ -8,12 +8,24 @@ namespace BITFALL.Cosmetic.Types
|
||||
[Serializable]
|
||||
public struct PlayerAgent:ICosmeticType
|
||||
{
|
||||
public override bool Equals(object obj)
|
||||
{
|
||||
return GetType() == obj?.GetType();
|
||||
}
|
||||
public override int GetHashCode()=>GetType().GetHashCode();
|
||||
|
||||
public IModifyElement[] Require => Array.Empty<IModifyElement>();
|
||||
public IModifyElement[] Incompatible => Array.Empty<IModifyElement>();
|
||||
}
|
||||
[Serializable]
|
||||
public struct PlayerWeaponSkin:ICosmeticType
|
||||
{
|
||||
public override bool Equals(object obj)
|
||||
{
|
||||
return GetType() == obj?.GetType();
|
||||
}
|
||||
public override int GetHashCode()=>GetType().GetHashCode();
|
||||
|
||||
public IModifyElement[] Require => Array.Empty<IModifyElement>();
|
||||
public IModifyElement[] Incompatible => Array.Empty<IModifyElement>();
|
||||
}
|
||||
|
Reference in New Issue
Block a user