BattleNet.Player.Player C# (CSharp) Метод

Player() публичный Метод

public Player ( String name, UInt32 id, GameData class_, UInt32 level, Int32 x, Int32 y ) : System
name String
id System.UInt32
class_ GameData
level System.UInt32
x System.Int32
y System.Int32
Результат System
        public Player(String name, UInt32 id, GameData.CharacterClassType class_, UInt32 level, Int32 x, Int32 y)
            : base(id,x,y)
        {
            m_name = name;
            m_class = class_;
            m_level = level;
            m_directoryKnown = true;
        }

Same methods

Player::Player ( ) : System
Player::Player ( String name, UInt32 id, GameData class_, UInt32 level ) : System
Player