rename 'tvda' -> 'savegame'

This commit is contained in:
minjaesong
2021-10-20 10:38:25 +09:00
parent 5b758324f0
commit d5eef2a687
26 changed files with 50 additions and 50 deletions

View File

@@ -0,0 +1,12 @@
package net.torvald.terrarum.savegame
import java.nio.charset.Charset
/**
* Created by minjaesong on 2021-10-07.
*/
interface SimpleFileSystem {
fun getEntry(id: EntryID): DiskEntry?
fun getFile(id: EntryID): EntryFile?
fun getDiskName(charset: Charset): String
}