mirror of
https://github.com/diasurgical/devilution.git
synced 2026-05-21 05:40:54 +00:00
17 lines
357 B
C
17 lines
357 B
C
/**
|
|
* @file dthread.h
|
|
*
|
|
* Interface of functions for updating game state from network commands.
|
|
*/
|
|
#ifndef __DTHREAD_H__
|
|
#define __DTHREAD_H__
|
|
|
|
void dthread_remove_player(int pnum);
|
|
void dthread_send_delta(int pnum, char cmd, void *pbSrc, int dwLen);
|
|
void dthread_start();
|
|
void dthread_cleanup();
|
|
|
|
/* data */
|
|
|
|
#endif /* __DTHREAD_H__ */
|