ManaColor.cs 337 B

123456789101112
  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. public static Color HudText = new Color(1f, 1f, 1f, 1f);
  9. }