Seperation

This commit is contained in:
Aiden
2026-05-12 14:57:18 +10:00
parent d07ea1f63a
commit 95b4a54326
6 changed files with 334 additions and 251 deletions

View File

@@ -0,0 +1,12 @@
#pragma once
#include <string>
namespace RenderCadenceCompositor
{
struct ControlActionResult
{
bool ok = false;
std::string error;
};
}