Claude opus authored everything to make the user and task work. First iteration

This commit is contained in:
2026-03-07 21:39:10 -05:00
parent 8ab1efcca7
commit 2bee7dce43
25 changed files with 2003 additions and 164 deletions

16
Provider/main/user.hpp Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include <cstring>
#include "types.hpp"
struct user_t
{
uint8 id; // Auto-assigned (1255, 0 = empty slot)
char name[32]; // Display name
bool active; // Slot in use
};
constexpr int MAX_USERS = 8;
internal user_t g_Users[MAX_USERS] = {};
internal uint8 g_NextUserId = 1;