summaryrefslogtreecommitdiff
path: root/GameCode/CardAudioModifier.cs
blob: f6206c0f42e90ad15829e403f8d3d20ef134e03f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using UnityEngine;

public class CardAudioModifier : MonoBehaviour
{
	public enum StackType
	{
		RTPCValue,
		PostEvent
	}

	public string stackName;

	public StackType stackType;
}