State

public enum State : Int

The state of a Player.

  • No file is opened for playing.

    Declaration

    Swift

    case Closed = 0
  • The player is paused.

    Declaration

    Swift

    case Paused = 1
  • The player is playing.

    Declaration

    Swift

    case Playing = 2