lib_unity_purchase/Editor/Obfuscation/Entity/TangleFileConsts.cs

15 lines
637 B
C#
Raw Normal View History

2024-01-29 18:49:33 +08:00
namespace UnityEditor.Purchasing
{
class TangleFileConsts
{
internal const string k_OutputPath = "Assets/Scripts/UnityPurchasing/generated";
internal const string k_PrevOutputPath = "Assets/Plugins/UnityPurchasing/generated";
internal const string k_BadOutputPath = "Assets/Resources/UnityPurchasing/generated";
internal const string k_AppleClassPrefix = "Apple";
internal const string k_AppleStoreKitTestClassPrefix = "AppleStoreKitTest";
internal const string k_GooglePlayClassPrefix = "GooglePlay";
internal const string k_ObfuscationClassSuffix = "Tangle.cs";
}
}