First prototype of coroutine based UI

This commit is contained in:
krzosa
2025-12-28 16:12:22 +01:00
parent 06cb073832
commit 2acf2c189c
14 changed files with 138 additions and 89 deletions

View File

@@ -152,5 +152,6 @@ void Test(mco_coro *co) {
void InitTests() {
ConfigWaitForEvents = false;
TestDir = Format(TestArena, "%S/test_env", GetExeDir(TestArena));
CoAdd(Test);
CoData *data = CoAdd(Test);
data->dont_wait_until_resolved = true;
}