net.barkerjr.gameserver
Class Player

java.lang.Object
  extended by net.barkerjr.gameserver.Player

public class Player
extends Object

Contains a player

Since:
2009-05-02
Author:
BarkerJr

Field Summary
 int deaths
          The number of deaths
 String face
           
 int kills
          The number of kills
 String mesh
           
 String name
          The player's name
 String ngStats
           
 int ping
          The ping of the user
 int score
          The number of points
 float secondsConnected
          The number of seconds the player has been connected
 String skin
           
 int team
          The team the user is on
 
Method Summary
 int getDeaths()
          The number of deaths
 String getFace()
           
 int getIndex()
          The player index
 int getKills()
          The number of kills
 String getMesh()
           
 String getName()
          The name of the player
 String getNgStats()
           
 int getPing()
          The player ping
 int getScore()
          The number of points
 float getSecondsConnected()
          The number of seconds the player has been connected
 String getSkin()
           
 int getTeam()
          The player team
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

public String name
The player's name

Since:
2009-05-02

kills

public int kills
The number of kills

Since:
2009-05-02

secondsConnected

public float secondsConnected
The number of seconds the player has been connected

Since:
2009-05-02

ping

public int ping
The ping of the user

Since:
2009-05-02

team

public int team
The team the user is on

Since:
2009-05-02

score

public int score
The number of points

Since:
2009-05-02

deaths

public int deaths
The number of deaths

Since:
2009-05-02

mesh

public String mesh

skin

public String skin

face

public String face

ngStats

public String ngStats
Method Detail

getName

public String getName()
The name of the player

Returns:
the name of the player
Since:
2009-05-02

getKills

public int getKills()
The number of kills

Returns:
the number of kills
Since:
2009-05-02

getSecondsConnected

public float getSecondsConnected()
The number of seconds the player has been connected

Returns:
the number of seconds the player has been connected
Since:
2009-05-02

getIndex

public int getIndex()
The player index

Returns:
the player index
Since:
2009-05-02

getPing

public int getPing()
The player ping

Returns:
the player ping
Since:
2009-05-02

getTeam

public int getTeam()
The player team

Returns:
the player team
Since:
2009-05-02

getScore

public int getScore()
The number of points

Returns:
the number of points
Since:
2009-05-02

getDeaths

public int getDeaths()
The number of deaths

Returns:
the number of deaths
Since:
2009-05-02

getMesh

public String getMesh()

getSkin

public String getSkin()

getFace

public String getFace()

getNgStats

public String getNgStats()