add more item detail in inventory. Create some place holder for pet item so that those item can be shown

This commit is contained in:
Chomper9981
2026-01-20 16:31:57 +07:00
parent 093c257f74
commit 273f353ddc
19 changed files with 1959 additions and 584 deletions
+5
View File
@@ -59,6 +59,7 @@ namespace BrewMonster
private int m_iRoleLastLoginTime; // Role last login time
private int m_iAccountTotalCash;
private EC_PetCorral m_pPetCorral;
private List<CECObject> m_aTabSels = new List<CECObject>();
private List<CECSkill> m_aPtSkills = new List<CECSkill>();
private List<CECSkill> m_aPsSkills = new List<CECSkill>();
@@ -6879,5 +6880,9 @@ namespace BrewMonster
}
return iReason == 0? true : false;
}
public EC_PetCorral GetPetCorral()
{
return m_pPetCorral;
}
}
}
+4
View File
@@ -359,4 +359,8 @@ public class CECUIManager : MonoSingleton<CECUIManager>
pDlg = dlg;
}
}
public void FilterBadWords(string str)
{
// TODO: Implement bad word filtering
}
}