blob: 7ca5c117f0de18fedf264d2c6214ecdf8525956b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package gtPlusPlus.xmod.thaumcraft.objects;
import thaumcraft.common.lib.research.ResearchNoteData;
public class ResearchNoteDataWrapper extends ResearchNoteData {
public ResearchNoteDataWrapper() {
super();
}
public ResearchNoteDataWrapper(ResearchNoteData data) {
key = data.key;
color = data.color;
hexEntries = data.hexEntries;
hexes = data.hexes;
complete = data.complete;
copies = data.copies;
}
public void completeResearch() {
this.complete = true;
}
}
|