diff options
Diffstat (limited to 'GameCode/ScaleEventInstace.cs')
-rw-r--r-- | GameCode/ScaleEventInstace.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/GameCode/ScaleEventInstace.cs b/GameCode/ScaleEventInstace.cs new file mode 100644 index 0000000..391d8f7 --- /dev/null +++ b/GameCode/ScaleEventInstace.cs @@ -0,0 +1,10 @@ +using System; +using UnityEngine.Events; + +[Serializable] +public class ScaleEventInstace +{ + public UnityEvent scaleEvent; + + public float threshold = 1f; +} |