summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/TweenAnimation.cs
blob: bd0bae6e589f2a0eb3f8f9fd3417e7ca897e373c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;

namespace TweenAnimation
{

    [DisallowMultipleComponent]
    public class TweenAnimation : MonoBehaviour
    {
        public List<TweenModule> modules;

        public UnityEvent onPlayEnd;

    }

}