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

16 lines
311 B
C#
Raw Permalink Normal View History

2025-08-31 06:05:39 +00:00
using Godot;
using System.Threading.Tasks;
namespace Rokojori
{
[Tool]
[GlobalClass,Icon("res://addons/rokojori_action_library/Icons/SensorManager.svg")]
public partial class PresetModule: Resource
{
public virtual async Task ProcessPass( PresetContext context )
{
return;
}
}
}