예제 #1
0
        public void OnIssueStartStampSheet(
            string stampSheet
            )
        {
            Debug.Log("QuestDirector::OnIssueStartStampSheet");

            StartCoroutine(
                _stampSheetRunner.Run(
                    stampSheet,
                    _questSetting.questKeyId,
                    _questSetting.onError
                    )
                );
        }
예제 #2
0
        public void OnIssueStampSheet(
            string stampSheet
            )
        {
            Debug.Log("GachaDirector::OnIssueStampSheet");

            StartCoroutine(
                _stampSheetRunner.Run(
                    stampSheet,
                    _gachaSetting.showcaseKeyId,
                    _gachaSetting.onError
                    )
                );
        }
예제 #3
0
 public void OnIssueStampSheet(
     string stampSheet
     )
 {
     StartCoroutine(
         _stampSheetRunner.Run(
             stampSheet,
             _staminaStoreSetting.exchangeKeyId,
             _staminaStoreSetting.onError
             )
         );
 }
예제 #4
0
        public void OnIssueStampSheet(
            string stampSheet
            )
        {
            Debug.Log("MoneyStoreDiscountDirector::OnIssueStampSheet");

            StartCoroutine(
                _stampSheetRunner.Run(
                    stampSheet,
                    _moneyStoreDiscountSetting.showcaseKeyId,
                    _moneyStoreDiscountSetting.onError
                    )
                );
        }