Keeps the repo root clean - only README.md visible on landing page. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
227 B
C#
10 lines
227 B
C#
while (Run)
|
|
{
|
|
var stackTile = FloorItems
|
|
.NamedLike("Stack Magic Tile")
|
|
.First();
|
|
var item = Rand(FloorItems);
|
|
Move(item, stackTile.Location);
|
|
Delay(1);
|
|
}
|
|
|