mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-11 02:54:04 +09:00
13 lines
214 B
Kotlin
13 lines
214 B
Kotlin
package net.torvald.terrarum
|
|
|
|
import com.google.gson.JsonObject
|
|
|
|
/**
|
|
* Created by minjaesong on 2018-05-18.
|
|
*/
|
|
interface GsonSerialisable {
|
|
|
|
fun read(gson: JsonObject)
|
|
fun write(targetGson: JsonObject)
|
|
|
|
} |