RuneHive-Game
Loading...
Searching...
No Matches
ItemEquipWeaponDef.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 ItemEquipWeaponDef(
9 @SerializedName("attack_speed") val attackSpeed: Int,
10 @SerializedName("weapon_type") val weaponType: String,
11 val stances: Array<ItemEquipWeaponStanceDef>
12)