mirror of
https://github.com/Quackster/Havana.git
synced 2025-07-01 20:27:47 +00:00
Merge pull request #18 from GitHabbo/feature/housekeeping-stats
Fix for housekeeping stats
This commit is contained in:
commit
3dc4da3d32
1 changed files with 24 additions and 0 deletions
|
@ -16,4 +16,28 @@ public class HousekeepingStats {
|
|||
this.petCount = petCount;
|
||||
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