Files
BingoGrassland/Assets/MYp0ZVTT2QSDK/ThirdParty/com.unity.mobile.notifications@2.3.2/Editor/iOSAuthorizationOption.cs
T
changyunjiaandchangyunjia c28ea8ea4a 提交
2026-06-29 16:21:36 +08:00

19 lines
363 B
C#
Executable File

using System;
namespace Unity.Notifications
{
[Flags]
internal enum iOSAuthorizationOption
{
Default = 0,
Badge = 1 << 0,
Sound = 1 << 1,
Alert = 1 << 2,
CarPlay = 1 << 3,
CriticalAlert = 1 << 4,
ProvidesAppNotificationSettings = 1 << 5,
Provisional = 1 << 6,
All = ~0,
}
}