10 lines
128 B
C
10 lines
128 B
C
#pragma once
|
|
#include "stdbool.h"
|
|
struct state
|
|
{
|
|
bool display_init;
|
|
bool wifi_init;
|
|
};
|
|
|
|
extern struct state mainState;
|