Files
playdate-kit/Sources/PlaydateKit/Playdate/Enumerations/AccessReply.swift
T
javier 91783deb7b
CI / Build & test (macOS) (push) Has been cancelled
CI / Embedded Swift cross-compile (push) Has been cancelled
Documentation / deploy (push) Has been cancelled
Added missing documentation to the source code in the Playdate bindings target.
2026-07-25 12:55:53 +02:00

11 lines
417 B
Swift

/// The user's answer to a permission request (microphone, network).
public enum AccessReply: UInt32, Sendable {
/// The user has not answered yet; the request's completion delivers
/// the answer later.
case ask = 0
/// The user has already denied access; the completion is not called.
case deny = 1
/// The user has already granted access; the completion is not called.
case allow = 2
}