fix(06): correct dependency for plan 06-02 on 06-01

This commit is contained in:
2026-03-11 11:34:11 +00:00
parent 8b18e80f04
commit 5c94fb4ca6
@@ -2,9 +2,9 @@
phase: 06-polish-and-ux
plan: 02
type: execute
wave: 1
depends_on: []
files_modified: [src/rendering/Renderer.ts]
wave: 2
depends_on: [06-01]
files_modified: [src/rendering/Renderer.ts, src/game/Game.ts]
autonomous: true
requirements: [UX-01]
user_setup: []
@@ -80,6 +80,12 @@ ctx.shadowBlur = 15; // Glow intensity (keep under 20 for performance)
ctx.strokeStyle = '#00ff00';
ctx.lineWidth = 3;
```
From Plan 06-01 (animateMatch method created there):
```typescript
// Renderer.animateMatch() method signature (created in 06-01 Task 3)
animateMatch(tiles: Tile[]): void;
```
</interfaces>
</context>