Esempio n. 1
0
    public CharacterResource(int type, int id, long number, int characterId, int level) : base(type, id, number)
    {
        this.characterId = characterId;
        this.level       = level;

        if (characterStatCollection == null)
        {
            characterStatCollection = LoadResourceController.GetCharacterStat();
        }

        ReloadCharacterStat();
    }