Watch
2
0
Fork
You've already forked raylib-cs
0

chore: run dotnet format scoped default (was previously scoped to just 'style')

This commit is contained in:
tiger tiger tiger 2026-07-30 15:07:59 +02:00
commit c06874f14a
No known key found for this signature in database
23 changed files with 749 additions and 485 deletions

View file

@ -194,17 +194,26 @@ public partial class PenroseTile : IExample
char step = production[i];
switch (step)
{
case 'W': newProduction.Append(ls.ruleW); break;
case 'X': newProduction.Append(ls.ruleX); break;
case 'Y': newProduction.Append(ls.ruleY); break;
case 'Z': newProduction.Append(ls.ruleZ); break;
case 'W':
newProduction.Append(ls.ruleW);
break;
case 'X':
newProduction.Append(ls.ruleX);
break;
case 'Y':
newProduction.Append(ls.ruleY);
break;
case 'Z':
newProduction.Append(ls.ruleZ);
break;
default:
{
if (step != 'F')
{
if (step != 'F')
{
newProduction.Append(step);
}
} break;
}
break;
}
}