aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data/PetAPI.kt
blob: 9c5eac6101bb90448f27d4decb319f2433883f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
package at.hannibal2.skyhanni.data

object PetAPI {

    // Contains color code + name and for older SkyHanni users maybe also the pet level
    var currentPet: String?
        get() = ProfileStorageData.profileSpecific?.currentPet
        set(value) {
            ProfileStorageData.profileSpecific?.currentPet = value
        }
}