Example #1
0
 private void Awake()
 {
     _handDeckView    = _handDeckPanel.GetComponent <IDeckView <AbilityCard> >();
     _discardDeckView = _discardDeckPanel.GetComponent <IDeckView <AbilityCard> >();
     _mainDeckView    = _mainDeckPanel.GetComponent <IDeckView <AbilityCard> >();
     _boostDeckView   = _boostDeckPanel.GetComponent <IDeckView <BoostCard> >();
     _boostStepView   = _boostStepPanel.GetComponent <IDeckView <BoostCard> >();
 }
Example #2
0
 public override void OnStartClient()
 {
     boardView   = boardViewGO.GetComponent <IDropView>();
     deckView    = deckViewGO.GetComponent <IDeckView>();
     discardView = discardViewGO.GetComponent <IDiscardView>();
 }