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 deleteAsset(::Core::Path const&) = 0;
37
38 // vIndex: 3
39 virtual void clear() = 0;
40
41 // vIndex: 4
42 virtual bool hasAsset(::Core::Path const&, bool) const = 0;
43
44 // vIndex: 5
45 virtual ::std::string const* const getDecryptionKey(::Core::Path const&, bool) const = 0;
46
47 // vIndex: 6
48 virtual void forEachAsset(::brstd::function_ref<void(::Core::Path const&)>) const = 0;
49
50 // vIndex: 7
51 virtual bool isEmpty() const = 0;
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63
64 // NOLINTEND
65};
Definition Path.h:15
Definition PackAssetSet.h:13
Definition Path.h:16
Definition function_ref.h:60
Definition Alias.h:14