facebook twitter hatena line email

Unity/Csharp/Const

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
public static class HogeConst
{
    public static readonly Color Color1 = new Color(1f, 1f, 1f, 1f);
    public static readonly Color Color2 = new Color(0f, 0f, 0f, 1f);
}