mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-07 20:31:51 +09:00
14 lines
331 B
Kotlin
14 lines
331 B
Kotlin
package net.torvald.terrarum.savegame
|
|
|
|
import java.io.File
|
|
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
|
|
fun getBackingFile(): File?
|
|
} |