mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-03-04 09:22:36 +01:00
21 lines
445 B
Java
21 lines
445 B
Java
package com.eu.habbo.habbohotel.pets;
|
|
|
|
import java.sql.ResultSet;
|
|
import java.sql.SQLException;
|
|
|
|
public class PetBreedingReward {
|
|
|
|
public final int petType;
|
|
|
|
|
|
public final int rarityLevel;
|
|
|
|
|
|
public final int breed;
|
|
|
|
public PetBreedingReward(ResultSet set) throws SQLException {
|
|
this.petType = set.getInt("pet_type");
|
|
this.rarityLevel = set.getInt("rarity_level");
|
|
this.breed = set.getInt("breed");
|
|
}
|
|
} |