14 lines
355 B
C#
Executable File
14 lines
355 B
C#
Executable File
using System.Collections.Generic;
|
|
using ModelViewer.Common;
|
|
using UnityEngine;
|
|
|
|
|
|
namespace BrewMonster.Scripts.ECModel
|
|
{
|
|
[CreateAssetMenu(fileName = "CombinedActionSO", menuName = "BrewMonster/CombinedActionSO")]
|
|
|
|
public class CombinedActionSO : ScriptableObject
|
|
{
|
|
public List<A3DCombinedAction> CombinedActionData = new();
|
|
}
|
|
} |