mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-13 12:14:17 +01:00
Add improved WIP edit windows for materials and models
This commit is contained in:
parent
e0a171051d
commit
4efdd6d834
12 changed files with 969 additions and 146 deletions
|
|
@ -26,4 +26,10 @@ public readonly struct WeaponType : IEquatable< WeaponType >
|
|||
|
||||
public override int GetHashCode()
|
||||
=> Value.GetHashCode();
|
||||
|
||||
public static bool operator ==( WeaponType lhs, WeaponType rhs )
|
||||
=> lhs.Value == rhs.Value;
|
||||
|
||||
public static bool operator !=( WeaponType lhs, WeaponType rhs )
|
||||
=> lhs.Value != rhs.Value;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue