Allow access 2 internal structure via intermediate

This commit is contained in:
BradBot_1 2023-07-13 13:56:31 +01:00 committed by Dan Mulloy
parent 9f4ede696a
commit 18c87ee2b7
1 changed files with 7 additions and 0 deletions

View File

@ -54,4 +54,11 @@ public class StructureModifierIntermediate<T> {
this.structure.write(index, toWrite);
}
/**
* @return The internal structure modifier
*/
public StructureModifier<T> getInternalStructureModifier() {
return this.structure;
}
}