This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/libs/common/network_queue.hpp
T
2013-06-17 15:15:27 +10:00

13 lines
216 B
C++

#ifndef NETWORKQUEUE_HPP_
#define NETWORKQUEUE_HPP_
#include "packet_type.hpp"
void BeginQueueThread();
void EndQueueThread();
void KillQueueThread();
Packet peekNetworkPacket();
Packet popNetworkPacket();
#endif