Schafkopf-Server/Sources/App/Results/PlayerActionResult.swift

18 lines
206 B
Swift
Raw Normal View History

2021-12-01 22:49:54 +01:00
import Foundation
2021-12-03 18:03:29 +01:00
enum PlayerActionResult {
2021-12-01 22:49:54 +01:00
case success
case invalidToken
case noTableJoined
case tableNotFull
case tableStateInvalid
2021-12-09 11:10:20 +01:00
case invalidCard
2021-12-01 22:49:54 +01:00
}