No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CloudProjectId.cs 282B

12345678910111213
  1. using UnityEngine;
  2. using Unity.Services.Core.Configuration.Internal;
  3. namespace Unity.Services.Core.Configuration
  4. {
  5. class CloudProjectId : ICloudProjectId
  6. {
  7. public string GetCloudProjectId()
  8. {
  9. return Application.cloudProjectId;
  10. }
  11. }
  12. }