summaryrefslogtreecommitdiff
path: root/GameCode/ScaleEventInstace.cs
blob: 391d8f75391bcd680d6b4a2e7d907bc0b39c324a (plain)
1
2
3
4
5
6
7
8
9
10
using System;
using UnityEngine.Events;

[Serializable]
public class ScaleEventInstace
{
	public UnityEvent scaleEvent;

	public float threshold = 1f;
}