Initial implementation.

This commit is contained in:
2025-03-02 16:01:30 +01:00
parent 1aa4656eb0
commit f51dd5b437
9 changed files with 503 additions and 12 deletions

View File

@@ -0,0 +1,21 @@
#include "raid/raid.hpp"
#include <imgui.h>
namespace
{
void render()
{
ImGui::Text("hi");
}
}
int main(int argc, char* argv[])
{
return raid::runQuick(argc, argv, {
.callbacks = {
.render = &render
}
});
}