LeviLamina
Loading...
Searching...
No Matches
IInPackagePacks.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/screens/controllers/PackCategory.h"
7#include "mc/deps/core/file/PathBuffer.h"
8#include "mc/deps/core/resource/PackType.h"
9#include "mc/deps/core/resource/ResourceFileSystem.h"
10
11// auto generated forward declare list
12// clang-format off
13namespace Core { class Path; }
14// clang-format on
15
17public:
18 // IInPackagePacks inner types declare
19 // clang-format off
20 struct MetaData;
21 // clang-format on
22
23 // IInPackagePacks inner types define
24 struct MetaData {
25 public:
26 // member variables
27 // NOLINTBEGIN
28 ::ll::TypedStorage<8, 32, ::Core::PathBuffer<::std::string>> mPath;
29 ::ll::TypedStorage<1, 1, bool> mIsHidden;
30 ::ll::TypedStorage<4, 4, ::PackCategory> mPackCategory;
31 ::ll::TypedStorage<4, 4, ::ResourceFileSystem> mFileSystem;
32 // NOLINTEND
33
34 public:
35 // prevent constructor by default
36 MetaData();
37
38 public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI MetaData(::Core::Path const& path, bool isHidden, ::PackCategory packCategory);
42 // NOLINTEND
43
44 public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(::Core::Path const& path, bool isHidden, ::PackCategory packCategory);
48 // NOLINTEND
49 };
50
51public:
52 // virtual functions
53 // NOLINTBEGIN
54 virtual ~IInPackagePacks() = default;
55
56 virtual ::std::vector<::IInPackagePacks::MetaData> getPacks(::PackType packType) const = 0;
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62
63 // NOLINTEND
64};
Definition Path.h:12
Definition IInPackagePacks.h:16
Definition IInPackagePacks.h:24