fixed a bug where a dynamic item would not get saved/loaded at all

This commit is contained in:
minjaesong
2022-02-22 17:12:49 +09:00
parent 1787ad7cdd
commit df6950c0b8
30 changed files with 206 additions and 89 deletions

View File

@@ -1,5 +1,6 @@
package net.torvald.terrarum.savegame
import java.io.File
import java.nio.charset.Charset
/**
@@ -9,4 +10,5 @@ interface SimpleFileSystem {
fun getEntry(id: EntryID): DiskEntry?
fun getFile(id: EntryID): EntryFile?
fun getDiskName(charset: Charset): String
fun getBackingFile(): File?
}