PRoConEvents.CPlayerJoinInf.CPlayerJoinInf C# (CSharp) Method

CPlayerJoinInf() public method

public CPlayerJoinInf ( int teamID, int playerWL, int playerSquad, System.DateTime Playerjoined, int score, double rank, double skill, double spm, double spmcombat, double kdr, double TBvalue, double playerValue, string tag, bool tobebalanced, bool commander, bool spectator ) : System
teamID int
playerWL int
playerSquad int
Playerjoined System.DateTime
score int
rank double
skill double
spm double
spmcombat double
kdr double
TBvalue double
playerValue double
tag string
tobebalanced bool
commander bool
spectator bool
return System
            public CPlayerJoinInf(int teamID, int playerWL, int playerSquad, DateTime Playerjoined, int score, double rank, double skill, double spm, double spmcombat, double kdr, double TBvalue, double playerValue, string tag, bool tobebalanced, bool commander, bool spectator)
            {
                _TBvalue = TBvalue;
                _teamID = teamID;
                _playerWL = playerWL;
                _playerSquad = playerSquad;
                _Playerjoined = Playerjoined;
                _score = score;
                _rank = rank;
                _skill = skill;
                _spm = spm;
                _spmcombat = spmcombat;
                _kdr = kdr;
                _tag = tag;
                _tobebalanced = tobebalanced;
                _playerValue = playerValue;
                _IsCommander = commander;
                _IsSpectator = spectator;
            }
        }
CPlayerJoinInf