rj-action-library/Runtime/Presets/PresetContext.cs

21 lines
274 B
C#
Raw Normal View History

2025-08-31 06:05:39 +00:00
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;
}
}