summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Avatar/Actions/ActionEffects/ActionAfterImageInterval.cs
blob: 1d5c2f8b976716b2d59c7e2ef431850e01baf706 (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;

public class ActionAfterImageInterval : ActionBase
{
    private int m_Interval;

    public ActionAfterImageInterval(int interval)
    {
        m_Interval = interval;
    }

    public override void Execute()
    {
        AfterImagePool.Instance.SetInterval(m_Interval);
    }
}