Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/pets/PetBreedingReward.java

21 lines
445 B
Java
Raw Normal View History

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