aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/FileSystem/Content/ContentPath.cs
blob: 1e2c8ab32a349cb9a0e39eeed85e71db60d0d20c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace Ryujinx.HLE.FileSystem.Content
{
    static class ContentPath
    {
        public const string SystemContent    = "@SystemContent";
        public const string UserContent      = "@UserContent";
        public const string SdCardContent    = "@SdCardContent";
        public const string SdCard           = "@SdCard";
        public const string CalibFile        = "@CalibFile";
        public const string Safe             = "@Safe";
        public const string User             = "@User";
        public const string System           = "@System";
        public const string Host             = "@Host";
        public const string GamecardApp      = "@GcApp";
        public const string GamecardContents = "@GcS00000001";
        public const string GamecardUpdate   = "@upp";
        public const string RegisteredUpdate = "@RegUpdate";
    }
}