예제 #1
0
파일: LOTRGame.cs 프로젝트: ll2585/LOTRLCG
 public void character_committed(LOTRPlayer player, PlayerCard character)
 {
     //todo: check that player owns hero
     character.commit();
     game_event_handler.fire_game_event(GameEvent.CARD_COMMITTED_KEY, new GameArgs(c: character));
     Debug.Log("Does this actullay wait");
     //fire_game_event(player, GameEvent.GAME_EVENT_TYPE.COMMITTED, new GameArgs(c:character));
 }