unity list of actions
using System;
using System.Collections.Generic;
using UnityEngine;
public class ActionClass : MonoBehaviour
{
private List<Action> actions;
private void Start()
{
actions = new List<Action>();
actions.Add(Action1);
actions.Add(Action2);
actions.Add(Action3);
}
private void Action1() { }
private void Action2() { }
private void Action3() { }
}