Keeps the repo root clean - only README.md visible on landing page. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
9 lines
197 B
C#
9 lines
197 B
C#
var rollers = Inventory.Where(x => x.GetName().Contains("Roller")).Take(4);
|
|
var rot = 0;
|
|
|
|
foreach (var roller in rollers)
|
|
{
|
|
Place(roller, new Point(7, 10), rot);
|
|
rot += 2;
|
|
Delay(150);
|
|
} |