Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/pets/PetBreedingReward.java
2019-05-26 21:15:26 +03:00

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");
}
}