Refactored locks for rooms to be more versatile by giving them their own type.

This commit is contained in:
Max 2025-01-29 12:02:00 +01:00
parent 7bec7c539d
commit d79d6216f0
13 changed files with 85 additions and 53 deletions

View file

@ -70,7 +70,7 @@ public class DicePair
return _pair.Item1.GetResult() + _pair.Item2.GetResult();
}
public bool DoResultsMatch()
public bool CheckIfResultsMatch()
{
if (_pair.Item1.GetResult() == _pair.Item2.GetResult())
{