15 lines
637 B
C#
15 lines
637 B
C#
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";
|
|
}
|
|
}
|