summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Unit/Events/AnimationEventBase.cs
blob: bcaf9eae905ae3c3b3be202b04e8f3b464cd4dc5 (plain)
1
2
3
4
5
6
7
8
9
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class AnimationEventBase : ScriptableObject
{
    public int startFrame;
    public TimelineEvent.EEventType type;
}