summaryrefslogtreecommitdiff
path: root/YesCommander/Assets/Scripts/Tools/TriggerSystem/Action.cs
blob: ad304b1df297e00f53f3b836b2cf94100eb0073a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace YC
{

    public abstract class Action
    {
        public abstract void Execute(params object[] args);

        public virtual void Init() { }

    }

}