RuneHive-Game
Loading...
Searching...
No Matches
ItemEquipWeaponStanceDef.kt
Go to the documentation of this file.
1package org.jire.runehiveps.defs
2
3import com.google.gson.annotations.SerializedName
4
5/**
6 * @author Jire
7 */
8data class ItemEquipWeaponStanceDef(
9 @SerializedName("combat_style") val combatStyle: String,
10 @SerializedName("attack_type") val attackType: String,
11 @SerializedName("attack_style") val attackStyle: String,
12 val experience: String,
13 val boosts: String?
14)