BugFix: Make Round Serializable to prevent application crash on switching to another app.

This commit is contained in:
2020-08-23 22:06:04 +02:00
parent 791937f10b
commit bd888779e9

View File

@@ -1,6 +1,8 @@
package me.zobrist.tichucounter package me.zobrist.tichucounter
class Round() { import java.io.Serializable
class Round(): Serializable {
var scoreA: Int = 0 var scoreA: Int = 0
var scoreB: Int = 0 var scoreB: Int = 0