Open-source multiplayer game server compatible with the RuneScape client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
openrs2/deob-ir/src/main/java/dev/openrs2/deob/ir/flow/ControlFlowTransfer.kt

8 lines
193 B

package dev.openrs2.deob.ir.flow
sealed class ControlFlowTransfer {
data class ConditionalJump(val successful: Boolean) : ControlFlowTransfer()
object Goto : ControlFlowTransfer()
}