blob: be0e9b9099a807d59817cba918e57d0e39075fab (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
/** @file io.h */
#include "../shared/protocol.h"
/** @brief i/o module main */
void w2_io_main();
/** @brief global struct containing all i/o */
extern w2_s_io_all g_w2_io;
|