summaryrefslogtreecommitdiff
path: root/GameCode/CardThemeColor.cs
blob: 780dcd5baefa83b124925f4318e3c12b2f8d645c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using UnityEngine;

[Serializable]
public class CardThemeColor
{
	public enum CardThemeColorType
	{
		DestructiveRed,
		FirepowerYellow,
		DefensiveBlue,
		TechWhite,
		EvilPurple,
		PoisonGreen,
		NatureBrown,
		ColdBlue,
		MagicPink
	}

	public CardThemeColorType themeType;

	public Color targetColor;

	public Color bgColor;
}