mirror of
https://udrimavric.com/MAVRIC/Stratasys-450mc-VR.git
synced 2025-01-23 15:48:33 -05:00
16 lines
411 B
C#
16 lines
411 B
C#
|
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;
|
||
|
}
|
||
|
}
|