summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/TweenAnimation.cs
blob: 93b5b1735051159852900f70d553647a84090277 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;

    }

}