
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
강의 내용에 따라 코드 스니펫을 그대로 붙여넣었습니다.
Advertisement.IsReady()
ShowOptions options = new ShowOptions { resultCallback = ResultAds };
부분에서 에러가 발생합니다.
패키지가 업데이트 되어서 해당 코드를 사용할 수 없는 것 같은데, 강의자료 업데이트 부탁드립니다.

public void ShowRewardAd()
{
if (Advertisement.IsReady()) // error CS0117: 'Advertisement' does not contain a definition for 'IsReady'
{
ShowOptions options = new ShowOptions { resultCallback = ResultAds }; // error CS0117: ' ShowOptions' does not contain a definition for 'resultCallback'
Advertisement.Show(adType, options);
}
}
