luxlabs header browser preview


@interface CLSScoreItem : CLSActivityItem {
    double _score;
    double _maxScore;
}

@property (nonatomic) double score;
@property (nonatomic) double maxScore;

+ (BOOL)supportsSecureCoding;

- (id)_init;
- (void)encodeWithCoder:(id)a0;
- (id)description;
- (id)dictionaryRepresentation;
- (id)initWithCoder:(id)a0;
- (id)initWithIdentifier:(id)a0 title:(id)a1;
- (id)initWithIdentifier:(id)a0 title:(id)a1 score:(double)a2 maxScore:(double)a3;

@end