예제 #1
0
        public Account(string login, string password, DofusClient client)
        {
            Login    = login;
            Password = password;

            Client = client;

            Character = new Character(Client);

            LatencyFrame = new LatencyFrame(this);
        }
예제 #2
0
 public Character(DofusClient client)
 {
     Client        = client;
     Stats         = new CharacterCharacteristicsInformations();
     Look          = new EntityLook();
     Restrictions  = new ActorRestrictionsInformations();
     Inventory     = new List <ObjectItem>();
     Spells        = new List <SpellItem>();
     Status        = CharacterStatus.Disconnected;
     MapData       = new MapData();
     Map           = new Map(Client);
     GatherManager = new GatherManager(Client);
     Jobs          = new List <JobExperience>();
 }