mirror of
https://udrimavric.com/MAVRIC/Stratasys-Fortus-450mc.git
synced 2025-01-22 23:28:51 -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
|
|
}
|
|
}
|
|
}
|