LeviLamina
Loading...
Searching...
No Matches
PackAssetSet.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/brstd/function_ref.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Core { class Path; }
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 PackAssetSet& operator=(PackAssetSet const&);
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual ~PackAssetSet() = default;
31
32 // vIndex: 1
33 virtual void addAsset(::Core::Path, ::std::string) = 0;
34
35 // vIndex: 2
36 virtual void clear() = 0;
37
38 // vIndex: 3
39 virtual bool hasAsset(::Core::Path const&, bool) const = 0;
40
41 // vIndex: 4
42 virtual ::std::string const* const getDecryptionKey(::Core::Path const&, bool) const = 0;
43
44 // vIndex: 5
45 virtual void forEachAsset(::brstd::function_ref<void(::Core::Path const&)>) const = 0;
46
47 // vIndex: 6
48 virtual bool isEmpty() const = 0;
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54
55 // NOLINTEND
56};
Definition Path.h:17
Definition PackAssetSet.h:13
Definition Path.h:16
Definition function_ref.h:60
Definition Alias.h:14