back to regex

This commit is contained in:
adrienmalin
2018-12-17 17:32:39 +01:00
parent 6a51441c0f
commit 98fec45f4f
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,9 @@
package adrienmalin.pingpoints
import java.util.regex.Pattern
data class Player (
var name: String,
var score: Int,
var soundex:String? = null
var pattern: Pattern? = null
)