Update framework

This commit is contained in:
2022-11-26 02:22:02 +01:00
parent 9a6ce1f832
commit ae057940af
508 changed files with 26011 additions and 14248 deletions

View File

@@ -0,0 +1,26 @@
// An item in the data pool
export default class DataPoolItem {
constructor(name, data = null, decodedData = null) {
this.name = name;
this.data = data;
this.decodedData = decodedData;
}
getData() {
return this.data;
}
setData(data) {
this.data = data;
}
getDecodedData() {
return this.decodedData;
}
setDecodedData(data) {
this.decodedData = this.decodedData;
}
getName() {
return this.name;
}
setName(name) {
this.name = name;
}
}