Files
Mindustry/core/src/mindustry/io/versions/Save8.java
2025-09-12 14:42:22 -04:00

10 lines
287 B
Java

package mindustry.io.versions;
/** Adds support for the marker binary data region. The code is unchanged here, because it was easier to add a >= 8 check in the SaveVersion class itself. */
public class Save8 extends ShortChunkSaveVersion{
public Save8(){
super(8);
}
}