This commit is contained in:
CortexCore
2024-03-19 20:16:48 +08:00
parent 0da2773ea6
commit c8f8c3c8df
112 changed files with 682250 additions and 8960 deletions

View File

@@ -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>();
}