Persistent unit IDs
This commit is contained in:
15
core/src/mindustry/io/versions/Save1.java
Normal file
15
core/src/mindustry/io/versions/Save1.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package mindustry.io.versions;
|
||||
|
||||
import java.io.*;
|
||||
|
||||
public class Save1 extends LegacySaveVersion{
|
||||
|
||||
public Save1(){
|
||||
super(1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void readEntities(DataInput stream) throws IOException{
|
||||
readLegacyEntities(stream);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user