Engine
Class Player

source: e:\games\UnrealTournament\Engine\Classes\Player.uc
Core.Object
   |
   +--Engine.Player
Direct Known Subclasses:None

class Player
extends Core.Object

//============================================================================= // Player: Corresponds to a real player (a local camera or remote net player). // This is a built-in Unreal class and it shouldn't be modified. //=============================================================================
Variables
 PlayerPawn Actor
 ConfiguredInternetSpeed, ConfiguredLanSpeed
 Console Console
 int CurrentNetSpeed
 byte SelectedCursor
 float WindowsMouseX
 float WindowsMouseY
 bool bShowWindowsMouse
 bool bSuspendPrecaching
 bool bWindowsMouseAvailable
 int vfExec
 int vfOut


Source Code


00001	//=============================================================================
00002	// Player: Corresponds to a real player (a local camera or remote net player).
00003	// This is a built-in Unreal class and it shouldn't be modified.
00004	//=============================================================================
00005	class Player extends Object
00006		native
00007		noexport;
00008	
00009	//-----------------------------------------------------------------------------
00010	// Player properties.
00011	
00012	// Internal.
00013	var native const int vfOut;
00014	var native const int vfExec;
00015	
00016	// The actor this player controls.
00017	var transient const playerpawn Actor;
00018	var transient const console Console;
00019	
00020	// Window input variables
00021	var transient const bool bWindowsMouseAvailable;
00022	var bool bShowWindowsMouse;
00023	var bool bSuspendPrecaching;
00024	var transient const float WindowsMouseX;
00025	var transient const float WindowsMouseY;
00026	var int CurrentNetSpeed;
00027	var globalconfig int ConfiguredInternetSpeed, ConfiguredLanSpeed;
00028	var byte SelectedCursor;
00029	
00030	const IDC_ARROW=0;
00031	const IDC_SIZEALL=1;
00032	const IDC_SIZENESW=2;
00033	const IDC_SIZENS=3;
00034	const IDC_SIZENWSE=4;
00035	const IDC_SIZEWE=5;
00036	const IDC_WAIT=6;
00037	
00038	defaultproperties
00039	{
00040	     ConfiguredInternetSpeed=2600
00041	     ConfiguredLanSpeed=20000
00042	}

End Source Code