Or

data class Or(val leftCondition: Condition, val rightCondition: Condition) : Condition

A condition that combines two conditions with a logical OR.

Constructors

Link copied to clipboard
constructor(leftCondition: Condition, rightCondition: Condition)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun evaluate(game: Game, card: CardInstance): Boolean