21 lines
274 B
C#
21 lines
274 B
C#
|
|
|
||
|
|
using Godot;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace Rokojori
|
||
|
|
{
|
||
|
|
public enum PresetPass
|
||
|
|
{
|
||
|
|
Prefly,
|
||
|
|
Prepare,
|
||
|
|
Process,
|
||
|
|
Post
|
||
|
|
}
|
||
|
|
|
||
|
|
public class PresetContext
|
||
|
|
{
|
||
|
|
public Node root;
|
||
|
|
public AppPreset appPreset;
|
||
|
|
public PresetPass pass;
|
||
|
|
}
|
||
|
|
}
|