parent
fe6bf3eba3
commit
fba37cd13a
@ -0,0 +1,17 @@ |
|||||||
|
package net.pokeranalytics.android.model |
||||||
|
|
||||||
|
import net.pokeranalytics.android.R |
||||||
|
import net.pokeranalytics.android.ui.view.RowRepresentable |
||||||
|
|
||||||
|
enum class TournamentKind : RowRepresentable { |
||||||
|
MTT, |
||||||
|
SNG; |
||||||
|
|
||||||
|
override val resId: Int? |
||||||
|
get() { |
||||||
|
return when (this) { |
||||||
|
MTT -> R.string.mtt |
||||||
|
SNG -> R.string.sng |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,6 @@ |
|||||||
|
package net.pokeranalytics.android.ui.view.rowrepresentable |
||||||
|
|
||||||
|
import net.pokeranalytics.android.ui.view.RowRepresentable |
||||||
|
|
||||||
|
enum class TournamentNameRow : RowRepresentable { |
||||||
|
} |
||||||
@ -0,0 +1,8 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<resources> |
||||||
|
<string-array name="tournament_fake_name"> |
||||||
|
<item>LA FIEVRE</item> |
||||||
|
<item>NITRO</item> |
||||||
|
<item>WCOOP EVENT #1</item> |
||||||
|
</string-array> |
||||||
|
</resources> |
||||||
@ -1,8 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||||
<resources> |
|
||||||
<string-array name="tournament_type"> |
|
||||||
<item>MTT</item> |
|
||||||
<item>Sit&Go</item> |
|
||||||
<item>Turbo Sit&Go</item> |
|
||||||
</string-array> |
|
||||||
</resources> |
|
||||||
Loading…
Reference in new issue