Implements some micro-optimizations
All checks were successful
Build / Build (push) Successful in 51s

This commit is contained in:
2025-07-05 15:46:32 +02:00
parent c795f20e54
commit 8a857ed232
11 changed files with 80 additions and 21 deletions

View File

@@ -132,7 +132,7 @@ public interface IItem : INamedValue
/// </summary>
/// <param name="key">The flag to check for.</param>
/// <returns>True if the item has the flag, false otherwise.</returns>
bool HasFlag(string key);
bool HasFlag(StringKey key);
}
/// <inheritdoc />
@@ -206,5 +206,5 @@ public class ItemImpl : IItem
}
/// <inheritdoc />
public bool HasFlag(string key) => Flags.Contains(key);
public bool HasFlag(StringKey key) => Flags.Contains(key);
}