Maze / Library /PackageCache /com.unity.visualscripting@1.8.0 /Editor /VisualScripting.State /States /NesterStateDescriptor.cs
| namespace Unity.VisualScripting | |
| { | |
| [] | |
| public class NesterStateDescriptor<TNesterState> : StateDescriptor<TNesterState> | |
| where TNesterState : class, INesterState | |
| { | |
| public NesterStateDescriptor(TNesterState state) : base(state) { } | |
| [] | |
| public override string Title() | |
| { | |
| return GraphNesterDescriptor.Title(state); | |
| } | |
| [] | |
| public override string Summary() | |
| { | |
| return GraphNesterDescriptor.Summary(state); | |
| } | |
| } | |
| } | |