codex init

This commit is contained in:
2026-08-05 16:49:05 +03:00
commit 3399e194ad
23 changed files with 1484 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#pragma once
#include "Core.h"
class SettingsStore {
public:
void defaults(Settings &s) const;
bool valid(const Settings &s) const;
bool load(Settings &s);
bool save(Settings &s);
TestParams params(const Settings &s) const;
};