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.

14 lines
377 B

extends Reference
class_name MajorityJudgmentAbstractJudgmentsProvider
# Abstract class for Judgment Providers
# The job of the children is to emit the judgment_emitted signal.
signal judgment_emitted(
author_identifier, # String, unique per author (aka participant)
candidate_index, # int
grade_index # int (0 == REJECT, up to the grading size minus one)
)