LeviLamina
Loading...
Searching...
No Matches
LocalPlayerContainer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/entity/components/IHitResultContainer.h"
7
8// auto generated forward declare list
9// clang-format off
10class HitResult;
11// clang-format on
12
13namespace HitResultContainer {
14
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual void addHitResult(::HitResult, ::HitResult) /*override*/;
33
34 // vIndex: 2
35 virtual void clear() /*override*/;
36
37 // vIndex: 3
38 virtual ::gsl::span<::std::pair<::HitResult, ::HitResult> const> getHits() const /*override*/;
39
40 // vIndex: 0
41 virtual ~LocalPlayerContainer() /*override*/ = default;
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53
54 // NOLINTEND
55};
56
57} // namespace HitResultContainer
Definition HitResult.h:19
Definition LocalPlayerContainer.h:15
Definition IHitResultContainer.h:10
Definition Alias.h:14