mirror of
https://udrimavric.com/MAVRIC/Stratasys-450mc-VR.git
synced 2025-01-23 07:38:33 -05:00
16 lines
411 B
C#
Executable File
16 lines
411 B
C#
Executable File
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace SO
|
|
{
|
|
[CreateAssetMenu(menuName = "Definitions/ProcessSO")]
|
|
public class ProcessSO : ScriptableObject
|
|
{
|
|
[SerializeField] private string processName;
|
|
[SerializeField] private List<StepSO> steps;
|
|
|
|
public string ProcessName => processName;
|
|
public List<StepSO> Steps => steps;
|
|
}
|
|
}
|