Interface ICondition
Interface for condition evaluation in FishMMO. Defines the contract for condition checks.
public interface ICondition
Methods
Evaluate(ICharacter, EventData)
Evaluates the condition with the given initiator and event data.
bool Evaluate(ICharacter initiator, EventData eventData)
Parameters
initiatorICharacterThe character initiating the check.
eventDataEventDataEvent data for the condition.
Returns
- bool
True if the condition is met; otherwise, false.