mirror of
https://github.com/yattee/yattee.git
synced 2026-02-20 09:49:46 +00:00
21 lines
386 B
Swift
21 lines
386 B
Swift
//
|
|
// PlayerInfoTab.swift
|
|
// Yattee
|
|
//
|
|
// Player info tab definitions.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum PlayerInfoTab: String, CaseIterable {
|
|
case description
|
|
case comments
|
|
|
|
var title: String {
|
|
switch self {
|
|
case .description: return String(localized: "player.description")
|
|
case .comments: return String(localized: "player.comments")
|
|
}
|
|
}
|
|
}
|