fix(BT12-Dev): PlayerSpawn.cs CS0246 컴파일 에러 — using UnityEngine 누락 (PD 보고 2026-05-13)

이전 commit 3a672f0 영역 Rigidbody2D 참조 추가 시 using UnityEngine 영역 누락.
fix: 첫 줄에 using UnityEngine 추가.

본 PM 자성 #8 — 신규 type 영역 (Rigidbody2D) 사용 영역 namespace using 영역 사전 검증 누락.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
깃 관리자 2026-05-13 20:04:44 +09:00
parent 3a672f0591
commit c052d78114
1 changed files with 1 additions and 0 deletions

View File

@ -1,3 +1,4 @@
using UnityEngine;
using Platformer.Core; using Platformer.Core;
using Platformer.Mechanics; using Platformer.Mechanics;
using Platformer.Model; using Platformer.Model;