23 lines
No EOL
867 B
C#
23 lines
No EOL
867 B
C#
namespace ShiroginSDK.Runtime.Shared.Constants
|
|
{
|
|
/// <summary>
|
|
/// Core constants for ShiroginSDK modules, paths, and versioning.
|
|
/// </summary>
|
|
public static class SDKConstants
|
|
{
|
|
// SDK Info
|
|
public const string SDKName = "ShiroginSDK";
|
|
public const string SDKVersion = "1.0.0";
|
|
public const string SDKDate = "2025.10";
|
|
|
|
// Resource Paths
|
|
public const string ConfigResourcePath = "ShiroginConfig";
|
|
public const string RuntimeDataPath = "Assets/ShiroginSDK/Runtime/Data/";
|
|
public const string EditorResourcesPath = "Assets/ShiroginSDK/Editor/Resources/";
|
|
public const string PopupResourceFolder = "Assets/ShiroginSDK/Runtime/UI/Popups/";
|
|
|
|
// Default Values
|
|
public const string DefaultTheme = "Default";
|
|
public const float DefaultDelay = 1f;
|
|
}
|
|
} |