You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
|
|
// Public stuff
|
|
struct Client;
|
|
typedef struct Client* Client;
|
|
|
|
#include "message.h"
|
|
#include "chassis.h"
|
|
#include "sdk.h"
|
|
|
|
Client client_new();
|
|
void client_connect(Client client);
|
|
void poll_message(Client client, union Message* message);
|
|
|