mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-15 04:20:09 +00:00
12 lines
325 B
C#
12 lines
325 B
C#
|
|
using UnityEngine;
|
|
|
|
namespace XCharts.Runtime
|
|
{
|
|
public static class ChartConst
|
|
{
|
|
public static readonly Color32 clearColor32 = new Color32(0, 0, 0, 0);
|
|
public static readonly Color32 greyColor32 = new Color32(128, 128, 128, 255);
|
|
public static readonly Color clearColor = Color.clear;
|
|
}
|
|
} |