powerfun-unity/Assets/AppCenter/Editor/ApplicationIdHelper.cs

12 lines
269 B
C#
Raw Permalink Normal View History

2021-11-12 16:21:13 +08:00
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using UnityEditor;
public static class ApplicationIdHelper
{
public static string GetApplicationId()
{
return PlayerSettings.applicationIdentifier;
}
}