버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

코드 블럭
languagec#
using KakaoGame.API;

// [TODO] Set the channel Id
int channelId;

KGTKakaoTalk.AddChannel(channelId, (result) => 
{
    if (result.IsSuccess) 
    {
        // Successfully added friend
    }
    else if (result.code == KGTResultCode.NotKakaoTalkUser)
    {
        // The logged-in user is not a 'KakaoTalk' user. This occurs when the user is not a KakaoTalk user, such as in the case of a user who is only registered for KakaoStory.
    }
    else
    {
        // Failed to add friend
    }
});

Google Games

...

ShowAchievement Show Achievement Screen

발췌문 삽입
EN_구글 게임 SDK 예제
EN_구글 게임 SDK 예제
namegoogle_games_show_achievement_view
nopaneltrue

...