21 lines
445 B
Java
Raw Normal View History

2018-07-06 13:30:00 +00:00
package com.eu.habbo.habbohotel.pets;
import java.sql.ResultSet;
import java.sql.SQLException;
2019-05-26 21:14:53 +03:00
public class PetBreedingReward {
2018-12-22 10:39:00 +00:00
2018-07-06 13:30:00 +00:00
public final int petType;
2018-12-22 10:39:00 +00:00
2018-07-06 13:30:00 +00:00
public final int rarityLevel;
2018-12-22 10:39:00 +00:00
2018-07-06 13:30:00 +00:00
public final int breed;
2019-05-26 21:14:53 +03:00
public PetBreedingReward(ResultSet set) throws SQLException {
2018-07-06 13:30:00 +00:00
this.petType = set.getInt("pet_type");
this.rarityLevel = set.getInt("rarity_level");
this.breed = set.getInt("breed");
}
}