1
Fork 0
mirror of https://github.com/Quackster/Havana.git synced 2025-07-03 05:07:46 +00:00

Add public get methods for housekeeping stats

This commit is contained in:
GitHabbo 2022-11-13 22:21:25 +01:00
parent e4ccf404a1
commit 34a25538c3

View file

@ -16,4 +16,28 @@ public class HousekeepingStats {
this.petCount = petCount; this.petCount = petCount;
this.photoCount = photoCount; this.photoCount = photoCount;
} }
public int getUserCount() {
return userCount;
}
public int getInventoryItemsCount() {
return inventoryItemsCount;
}
public int getRoomItemCount() {
return roomItemCount;
}
public int getGroupCount() {
return groupCount;
}
public int getPetCount() {
return petCount;
}
public int getPhotoCount() {
return photoCount;
}
} }