fix: Fixes doors as decorations & optimizes them (#1392)
This commit is contained in:
parent
6c09e5a006
commit
79c6f0375c
38 changed files with 1369 additions and 1578 deletions
|
|
@ -1736,4 +1736,8 @@ public static class Utility
|
|||
TypeCode.UInt64 => 64,
|
||||
_ => 64
|
||||
};
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static bool IsNullOrWhiteSpace(this ReadOnlySpan<char> span) =>
|
||||
span == default || span.IsEmpty || span.IsWhiteSpace();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue