sync: randomize imports: themes order, MCQ and UCQ choices
This commit is contained in:
parent
614003a7cd
commit
abd7fc6bef
3 changed files with 24 additions and 2 deletions
|
|
@ -44,8 +44,9 @@ type ExerciceFlagMCQChoice struct {
|
|||
|
||||
// ExerciceFlagMCQ holds information about a MCQ flag.
|
||||
type ExerciceFlagMCQ struct {
|
||||
Label string `toml:",omitempty"`
|
||||
Choice []ExerciceFlagMCQChoice
|
||||
Label string `toml:",omitempty"`
|
||||
Choice []ExerciceFlagMCQChoice
|
||||
NoShuffle bool
|
||||
}
|
||||
|
||||
// ExerciceFlagUCQChoice holds a choice for an UCQ flag.
|
||||
|
|
@ -65,6 +66,7 @@ type ExerciceFlagUCQ struct {
|
|||
Choices_Cost int64 `toml:",omitempty"`
|
||||
Choice []ExerciceFlagUCQChoice
|
||||
LockedFile []ExerciceUnlockFile `toml:"unlock_file,omitempty"`
|
||||
NoShuffle bool
|
||||
}
|
||||
|
||||
// ExerciceParams contains values parsed from defines.txt.
|
||||
|
|
|
|||
Reference in a new issue