1 //**************************************************************************
2 //**
3 //**	##   ##    ##    ##   ##   ####     ####   ###     ###
4 //**	##   ##  ##  ##  ##   ##  ##  ##   ##  ##  ####   ####
5 //**	 ## ##  ##    ##  ## ##  ##    ## ##    ## ## ## ## ##
6 //**	 ## ##  ########  ## ##  ##    ## ##    ## ##  ###  ##
7 //**	  ###   ##    ##   ###    ##  ##   ##  ##  ##       ##
8 //**	   #    ##    ##    #      ####     ####   ##       ##
9 //**
10 //**	$Id: p_playerreplicationinfo.h 2974 2008-01-03 08:36:51Z dj_jl $
11 //**
12 //**	Copyright (C) 1999-2006 Jānis Legzdiņš
13 //**
14 //**	This program is free software; you can redistribute it and/or
15 //**  modify it under the terms of the GNU General Public License
16 //**  as published by the Free Software Foundation; either version 2
17 //**  of the License, or (at your option) any later version.
18 //**
19 //**	This program is distributed in the hope that it will be useful,
20 //**  but WITHOUT ANY WARRANTY; without even the implied warranty of
21 //**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 //**  GNU General Public License for more details.
23 //**
24 //**************************************************************************
25 
26 class VPlayerReplicationInfo : public VThinker
27 {
28 	DECLARE_CLASS(VPlayerReplicationInfo, VThinker, 0)
29 	NO_DEFAULT_CONSTRUCTOR(VPlayerReplicationInfo);
30 
31 	//	Player we are replicating
32 	VBasePlayer*		Player;
33 	vint32				PlayerNum;
34 
35 	VStr				PlayerName;
36 	VStr				UserInfo;
37 
38 	vuint8				TranslStart;
39 	vuint8				TranslEnd;
40 	vint32				Colour;
41 
42 	vint32				Frags;
43 	vint32				Deaths;
44 	vint32				KillCount;
45 	vint32				ItemCount;
46 	vint32				SecretCount;
47 };
48