Luna/wind/Client.h

12 lines
201 B
C
Raw Normal View History

2023-08-14 16:15:29 +00:00
#pragma once
#include "Window.h"
#include <os/LocalServer.h>
struct Client
{
os::LocalServer::Client conn;
Vector<Window*> windows;
bool rpc_in_progress { false };
u8 rpc_id { 0 };
};