ManaColor.cs 275 B

12345678910
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. public class ManaColor : MonoBehaviour
  5. {
  6. public static Color Orange = new Color(233/255f, 63/255f, 20/255f, 1);
  7. public static Color LightGray = new Color(165/255f, 192/255f, 200/255f, 1);
  8. }