랜덤 박스 실행 public bool RandomBoxGrant(string catalogversion, string tableId) //랜덤박스 { // First, roll a random number and evaluate the drop table PlayFabServerAPI.EvaluateRandomResultTable(new PlayFab.ServerModels.EvaluateRandomResultTableRequest() { CatalogVersion = catalogversion, TableId = tableId }, result => { Debug.Log("Success"); }, fail => { Debug.Log("Fail"); }); } 유저 타이틀 데이터 저장/가져오기 publi..