LeviLamina
Loading...
Searching...
No Matches
FilePathManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/file/PathBuffer.h"
7#include "mc/deps/core/string/BasicStackString.h"
8#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace Core { class PathView; }
13namespace Core { struct FilePathManagerPaths; }
14// clang-format on
15
16namespace Core {
17
19public:
20 // member variables
21 // NOLINTBEGIN
38 // NOLINTEND
39
40public:
41 // prevent constructor by default
42 FilePathManager& operator=(FilePathManager const&);
45
46public:
47 // virtual functions
48 // NOLINTBEGIN
49 // vIndex: 0
50 virtual ~FilePathManager() /*override*/;
51 // NOLINTEND
52
53public:
54 // member functions
55 // NOLINTBEGIN
57
58 MCNAPI void setRootPath(::Core::PathView path);
59 // NOLINTEND
60
61public:
62 // static variables
63 // NOLINTBEGIN
64 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& ARCHIVE_DIR();
65
66 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& HOME_DIR();
67
68 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& PERSONA_TEST_DIR();
69
70 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& REALM_WORLDS_DIR();
71
72 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& RESOURCE_PACKS_DIR();
73
74 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& WORLDS_DIR();
75 // NOLINTEND
76
77public:
78 // constructor thunks
79 // NOLINTBEGIN
80 MCNAPI void* $ctor(::Core::FilePathManagerPaths&& paths);
81 // NOLINTEND
82
83public:
84 // destructor thunk
85 // NOLINTBEGIN
86 MCNAPI void $dtor();
87 // NOLINTEND
88
89public:
90 // vftables
91 // NOLINTBEGIN
92 MCNAPI static void** $vftable();
93 // NOLINTEND
94};
95
96} // namespace Core
Definition EnableNonOwnerReferences.h:7
Definition FilePathManager.h:18
static MCAPI void ** $vftable()
static MCAPI ::Core::PathBuffer<::Core::BasicStackString< char, 1024 > > const & ARCHIVE_DIR()
MCAPI void * $ctor(::Core::FilePathManagerPaths &&paths)
static MCAPI ::Core::PathBuffer<::Core::BasicStackString< char, 1024 > > const & WORLDS_DIR()
static MCAPI ::Core::PathBuffer<::Core::BasicStackString< char, 1024 > > const & RESOURCE_PACKS_DIR()
MCAPI FilePathManager(::Core::FilePathManagerPaths &&paths)
static MCAPI ::Core::PathBuffer<::Core::BasicStackString< char, 1024 > > const & HOME_DIR()
static MCAPI ::Core::PathBuffer<::Core::BasicStackString< char, 1024 > > const & PERSONA_TEST_DIR()
static MCAPI ::Core::PathBuffer<::Core::BasicStackString< char, 1024 > > const & REALM_WORLDS_DIR()
MCAPI void setRootPath(::Core::PathView path)
Definition PathView.h:15
Definition FilePathManagerPaths.h:7
Definition Alias.h:14