mirror of
https://udrimavric.com/MAVRIC/Stratasys-Fortus-450mc.git
synced 2025-01-23 07:38:37 -05:00
20 lines
366 B
C#
20 lines
366 B
C#
|
using UnityEditor.IMGUI.Controls;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Editor.DefintionsUI
|
|||
|
{
|
|||
|
public class DefinitionTreeItem : TreeViewItem
|
|||
|
{
|
|||
|
public ScriptableObject defObject;
|
|||
|
public DefType defType;
|
|||
|
|
|||
|
public enum DefType
|
|||
|
{
|
|||
|
Equipment,
|
|||
|
Procedure,
|
|||
|
Step,
|
|||
|
SubStep
|
|||
|
}
|
|||
|
}
|
|||
|
}
|