/*! * @file network_manager.h * Main interface for the network module. Manages all the modules */ #ifndef _NETDEFS #define _NETDEFS #ifdef HAVE_SDL_NET_H #include #else #include #endif typedef unsigned char byte; typedef enum { NET_SERVER, NET_CLIENT } NodeType; #endif /* _NETWORK_MANAGER */