구현 내용1. 구글 로그인 구현게임 접속 시, 자동으로 구글 로그인 구현 public void GPGSLogin(){ PlayGamesPlatform.Instance.Authenticate(ProcessAuthentication);}internal void ProcessAuthentication(SignInStatus status){ if (status == SignInStatus.Success) { string displayName = PlayGamesPlatform.Instance.GetUserDisplayName(); // 유저가 변경 가능 string userID = PlayGamesPlatform.Instance.GetUserId(); // 유저가 ..