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:
parent
e4ccf404a1
commit
34a25538c3
1 changed files with 24 additions and 0 deletions
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue