- Cleaned up some include dependencies.
SVN r1224 (trunk)
This commit is contained in:
parent
c86ca5e891
commit
db5723997c
217 changed files with 635 additions and 513 deletions
|
|
@ -32,14 +32,13 @@
|
|||
**
|
||||
*/
|
||||
|
||||
#include "m_alloc.h"
|
||||
#include "i_system.h"
|
||||
#include "d_protocol.h"
|
||||
#include "d_ticcmd.h"
|
||||
#include "d_net.h"
|
||||
#include "doomdef.h"
|
||||
#include "doomstat.h"
|
||||
#include "cmdlib.h"
|
||||
#include "farchive.h"
|
||||
|
||||
|
||||
char *ReadString (BYTE **stream)
|
||||
|
|
@ -281,6 +280,11 @@ int PackUserCmd (const usercmd_t *ucmd, const usercmd_t *basis, BYTE **stream)
|
|||
return *stream - start;
|
||||
}
|
||||
|
||||
FArchive &operator<< (FArchive &arc, ticcmd_t &cmd)
|
||||
{
|
||||
return arc << cmd.consistancy << cmd.ucmd;
|
||||
}
|
||||
|
||||
FArchive &operator<< (FArchive &arc, usercmd_t &cmd)
|
||||
{
|
||||
BYTE bytes[256];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue