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