blob: dd7ba61999f112fc8fd984961835ed87337b0865 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package cuchaz.enigma.gui;
import cuchaz.enigma.mapping.ClassEntry;
public class ScoredClassEntry extends ClassEntry {
private static final long serialVersionUID = -8798725308554217105L;
private float m_score;
public ScoredClassEntry(ClassEntry other, float score) {
super(other);
m_score = score;
}
public float getScore() {
return m_score;
}
}
|