#pragma once #include #include struct net_state { std::array mac; std::array ip; }; bool net_init(); const net_state& net_get_state(); void net_poll();