DEG-18 [UPDATE] 불필요한 주석 삭제

This commit is contained in:
Jay 2025-04-23 14:24:02 +09:00
parent 560b4c2745
commit ea3480350f

View File

@ -23,7 +23,6 @@ public class PlayerController : CharacterBase, IObserver<GameObject>
// 상태 관련
private PlayerStateIdle _playerStateIdle;
private PlayerStateMove _playerStateMove;
// public PlayerStateAttack _playerStateAttack;
// 행동 관련
private PlayerActionAttack attackAction;
@ -52,13 +51,11 @@ public class PlayerController : CharacterBase, IObserver<GameObject>
// 상태 초기화
_playerStateIdle = new PlayerStateIdle();
_playerStateMove = new PlayerStateMove();
// _playerStateAttack = new PlayerStateAttack();
_playerStates = new Dictionary<PlayerState, IPlayerState>
{
{ PlayerState.Idle, _playerStateIdle },
{ PlayerState.Move, _playerStateMove },
// { PlayerState.Attack, _playerStateAttack },
};
attackAction = new PlayerActionAttack();