pub unsafe trait GKTurnBasedEventHandlerDelegate {
// Provided methods
unsafe fn handleInviteFromGameCenter(
&self,
players_to_invite: &NSArray<NSString>,
)
where Self: Sized + Message { ... }
unsafe fn handleTurnEventForMatch_didBecomeActive(
&self,
match: &GKTurnBasedMatch,
did_become_active: bool,
)
where Self: Sized + Message { ... }
unsafe fn handleTurnEventForMatch(&self, match: &GKTurnBasedMatch)
where Self: Sized + Message { ... }
unsafe fn handleMatchEnded(&self, match: &GKTurnBasedMatch)
where Self: Sized + Message { ... }
}👎Deprecated
Available on crate feature
GKTurnBasedMatch only.Expand description
Provided Methods§
unsafe fn handleInviteFromGameCenter( &self, players_to_invite: &NSArray<NSString>, )
👎Deprecated
unsafe fn handleTurnEventForMatch_didBecomeActive( &self, match: &GKTurnBasedMatch, did_become_active: bool, )
👎Deprecated
unsafe fn handleTurnEventForMatch(&self, match: &GKTurnBasedMatch)
👎Deprecated
unsafe fn handleMatchEnded(&self, match: &GKTurnBasedMatch)
👎Deprecated