RuneHive-Game
Loading...
Searching...
No Matches
DropDef.kt
Go to the documentation of this file.
1package org.jire.runehiveps.defs
2
3/**
4 * @author Jire
5 */
6data class DropDef(
7 val id: Int,
8 val name: String,
9 val members: Boolean,
10 val quantity: String,
11 val noted: Boolean,
12 val rarity: Double,
13 val rolls: Int
14)