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
18class FilePathManager : public ::Bedrock::EnableNonOwnerReferences {
19public:
20 // member variables
21 // NOLINTBEGIN
38 // NOLINTEND
39
40public:
41 // prevent constructor by default
42 FilePathManager& operator=(FilePathManager const&);
43 FilePathManager();
44
45public:
46 // virtual functions
47 // NOLINTBEGIN
48 virtual ~FilePathManager() /*override*/;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
55
57
58 MCNAPI_C ::Core::PathView getWorldsPath() const;
59
60 MCNAPI void setRootPath(::Core::PathView path);
61 // NOLINTEND
62
63public:
64 // static variables
65 // NOLINTBEGIN
66 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& ARCHIVE_DIR();
67
68 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& HOME_DIR();
69
70 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& PERSONA_TEST_DIR();
71
72 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& REALM_WORLDS_DIR();
73
74 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& RESOURCE_PACKS_DIR();
75
76 MCNAPI static ::Core::PathBuffer<::Core::BasicStackString<char, 1024>> const& WORLDS_DIR();
77 // NOLINTEND
78
79public:
80 // constructor thunks
81 // NOLINTBEGIN
82 MCNAPI void* $ctor(::Core::FilePathManager const&);
83
84 MCNAPI void* $ctor(::Core::FilePathManagerPaths&& paths);
85 // NOLINTEND
86
87public:
88 // destructor thunk
89 // NOLINTBEGIN
90 MCNAPI void $dtor();
91 // NOLINTEND
92
93public:
94 // vftables
95 // NOLINTBEGIN
96 MCNAPI static void** $vftable();
97 // NOLINTEND
98};
99
100} // namespace Core
Definition EnableNonOwnerReferences.h:7
Definition FilePathManager.h:18
MCAPI FilePathManager(::Core::FilePathManager const &)
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 void * $ctor(::Core::FilePathManager const &)
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:17
Definition FilePathManagerPaths.h:7
Definition Alias.h:14