예제 #1
0
파일: RPS_Player.cs 프로젝트: kgc00/rps_net
 public void GenerateNewAiAction()
 {
     actionCommand = ActionSystem.GenerateActionCommand(this);
 }
예제 #2
0
파일: RPS_Player.cs 프로젝트: kgc00/rps_net
 public void GenerateNewPlayerAction(ActionType type)
 {
     actionCommand = ActionSystem.GenerateActionCommand(type, this);
     networkClient?.RaiseActionSelectedEvent(actionCommand);
 }
예제 #3
0
파일: RPS_Player.cs 프로젝트: kgc00/rps_net
 public void SetRemoteAction(ActionType type)
 {
     actionCommand = ActionSystem.GenerateActionCommand(type, this);
 }