15 lines
342 B
C++
15 lines
342 B
C++
/**
|
|
* @file dthread.h
|
|
*
|
|
* Interface of functions for updating game state from network commands.
|
|
*/
|
|
#pragma once
|
|
|
|
namespace devilution {
|
|
|
|
void dthread_remove_player(uint8_t pnum);
|
|
void dthread_send_delta(int pnum, _cmd_id cmd, byte *pbSrc, int dwLen);
|
|
void dthread_start();
|
|
void DThreadCleanup();
|
|
|
|
} // namespace devilution
|