This commit is contained in:
VDH
2025-09-08 18:04:40 +07:00
parent e59fa3fe0c
commit f1ca00030d
8 changed files with 314 additions and 289 deletions
+4
View File
@@ -3,6 +3,8 @@ using UnityEngine;
public class PlayerStateMachine
{
PlayerState _state;
CharacterCtrl _characterCtrl;
public void InitState(PlayerState state)
{
if (_state != null)
@@ -32,4 +34,6 @@ public class PlayerStateMachine
{
_state.Update();
}
//TODO: tìm OnMsgHstCorrectPos bên C++
}