﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Arugula.Math;

public class RandomColor : MonoBehaviour
{
    public Dice.WeightedColor[] colors;

    private void Start()
    {
        GetComponent<Renderer>().material.color = Dice.Roll(colors);
    }
}
