-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconstants.cs
More file actions
75 lines (73 loc) · 5.76 KB
/
Copy pathconstants.cs
File metadata and controls
75 lines (73 loc) · 5.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
namespace UnityOrbisBridge
{
public static partial class UOB
{
public static class NotificationIcons
{
public const string PlayStationButtons = "cxml://psnotification/tex_icon_system";
public const string IconBan = "cxml://psnotification/tex_icon_ban";
public const string DefaultIconNotification = "cxml://psnotification/tex_default_icon_notification";
public const string DefaultIconMessage = "cxml://psnotification/tex_default_icon_message";
public const string DefaultIconFriend = "cxml://psnotification/tex_default_icon_friend";
public const string DefaultIconTrophy = "cxml://psnotification/tex_default_icon_trophy";
public const string DefaultIconDownload = "cxml://psnotification/tex_default_icon_download";
public const string DefaultIconUpload16_9 = "cxml://psnotification/tex_default_icon_upload_16_9";
public const string DefaultIconCloudClient = "cxml://psnotification/tex_default_icon_cloud_client";
public const string DefaultIconActivity = "cxml://psnotification/tex_default_icon_activity";
public const string DefaultIconSmaps = "cxml://psnotification/tex_default_icon_smaps";
public const string DefaultIconSharePlay = "cxml://psnotification/tex_default_icon_shareplay";
public const string DefaultIconTips = "cxml://psnotification/tex_default_icon_tips";
public const string DefaultIconEvents = "cxml://psnotification/tex_default_icon_events";
public const string DefaultIconShareScreen = "cxml://psnotification/tex_default_icon_share_screen";
public const string DefaultIconCommunity = "cxml://psnotification/tex_default_icon_community";
public const string DefaultIconLfps = "cxml://psnotification/tex_default_icon_lfps";
public const string DefaultIconTournament = "cxml://psnotification/tex_default_icon_tournament";
public const string DefaultIconTeam = "cxml://psnotification/tex_default_icon_team";
public const string DefaultAvatar = "cxml://psnotification/tex_default_avatar";
public const string IconCapture = "cxml://psnotification/tex_icon_capture";
public const string IconStartRec = "cxml://psnotification/tex_icon_start_rec";
public const string IconStopRec = "cxml://psnotification/tex_icon_stop_rec";
public const string IconLiveProhibited = "cxml://psnotification/tex_icon_live_prohibited";
public const string IconLiveStart = "cxml://psnotification/tex_icon_live_start";
public const string IconLoading = "cxml://psnotification/tex_icon_loading";
public const string IconLoading16_9 = "cxml://psnotification/tex_icon_loading_16_9";
public const string IconCountdown = "cxml://psnotification/tex_icon_countdown";
public const string IconParty = "cxml://psnotification/tex_icon_party";
public const string IconSharePlay = "cxml://psnotification/tex_icon_shareplay";
public const string IconBroadcast = "cxml://psnotification/tex_icon_broadcast";
public const string IconPsnowToast = "cxml://psnotification/tex_icon_psnow_toast";
public const string AudioDeviceHeadphone = "cxml://psnotification/tex_audio_device_headphone";
public const string AudioDeviceHeadset = "cxml://psnotification/tex_audio_device_headset";
public const string AudioDeviceMic = "cxml://psnotification/tex_audio_device_mic";
public const string AudioDeviceMorpheus = "cxml://psnotification/tex_audio_device_morpheus";
public const string DeviceBattery0 = "cxml://psnotification/tex_device_battery_0";
public const string DeviceBattery1 = "cxml://psnotification/tex_device_battery_1";
public const string DeviceBattery2 = "cxml://psnotification/tex_device_battery_2";
public const string DeviceBattery3 = "cxml://psnotification/tex_device_battery_3";
public const string DeviceBatteryNoCharge = "cxml://psnotification/tex_device_battery_nocharge";
public const string DeviceCompApp = "cxml://psnotification/tex_device_comp_app";
public const string DeviceController = "cxml://psnotification/tex_device_controller";
public const string DeviceJediUsb = "cxml://psnotification/tex_device_jedi_usb";
public const string DeviceBlaster = "cxml://psnotification/tex_device_blaster";
public const string DeviceKeyboard = "cxml://psnotification/tex_device_keyboard";
public const string DeviceMouse = "cxml://psnotification/tex_device_mouse";
public const string DeviceMove = "cxml://psnotification/tex_device_move";
public const string DeviceRemote = "cxml://psnotification/tex_device_remote";
public const string DeviceOmit = "cxml://psnotification/tex_device_omit";
public const string IconConnect = "cxml://psnotification/tex_icon_connect";
public const string IconEventToast = "cxml://psnotification/tex_icon_event_toast";
public const string MorpheusTrophyBronze = "cxml://psnotification/tex_morpheus_trophy_bronze";
public const string MorpheusTrophySilver = "cxml://psnotification/tex_morpheus_trophy_silver";
public const string MorpheusTrophyGold = "cxml://psnotification/tex_morpheus_trophy_gold";
public const string MorpheusTrophyPlatinum = "cxml://psnotification/tex_morpheus_trophy_platinum";
public const string IconChampionsLeague = "cxml://psnotification/tex_icon_champions_league";
}
public enum Temperature { CPU, SOC }
public enum DiskInfo
{
Total, Used,
Free, Percent,
AllFormatted
}
}
}