rokojori_action_library/Runtime/Presets/PresetContext.cs

22 lines
301 B
C#
Raw Normal View History

2025-08-31 06:05:39 +00:00
using Godot;
using System.Collections.Generic;
2026-05-22 12:25:02 +00:00
using Rokojori.Extensions;
2025-08-31 06:05:39 +00:00
namespace Rokojori
{
public enum PresetPass
{
Prefly,
Prepare,
Process,
Post
}
public class PresetContext
{
public Node root;
public AppPreset appPreset;
public PresetPass pass;
}
}