mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 13:30:10 +00:00
18 lines
623 B
C#
18 lines
623 B
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
using UnityEngine;
|
|
|
|
namespace XCharts
|
|
{
|
|
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;
|
|
}
|
|
} |