mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-11 02:54:04 +09:00
15 lines
292 B
Kotlin
15 lines
292 B
Kotlin
package net.torvald.terrarum
|
|
|
|
import com.google.gson.JsonObject
|
|
|
|
/**
|
|
* Created by minjaesong on 2018-05-18.
|
|
*/
|
|
interface GsonSerialisable {
|
|
|
|
/**
|
|
* Will modify itself according to the input gson. Not sure it's even necessary so please test.
|
|
*/
|
|
fun read(gson: JsonObject)
|
|
|
|
} |