mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 03:28:19 +00:00
18 lines
294 B
C++
18 lines
294 B
C++
#ifndef ENGINE_FIFOCONSOLE_H
|
|
#define ENGINE_FIFOCONSOLE_H
|
|
|
|
#include <engine/console.h>
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
|
class FifoConsole
|
|
{
|
|
static void ListenFifoThread(void *pUser);
|
|
void *m_pFifoThread;
|
|
|
|
public:
|
|
FifoConsole(IConsole *pConsole);
|
|
};
|
|
#endif
|
|
|
|
#endif // FILE_ENGINE_FIFOCONSOLE_H
|