[Fix] Refactor project

This commit is contained in:
2026-03-02 12:49:12 +07:00
parent f65976796d
commit f52131f755
44 changed files with 449 additions and 404 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ namespace YachtDice.Dice
public override int[] GetFaceValues()
{
int[] copy = new int[faceValues.Length];
var copy = new int[faceValues.Length];
System.Array.Copy(faceValues, copy, faceValues.Length);
return copy;
}