LeviLamina
Loading...
Searching...
No Matches
ContainerValidationResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/inventory/simulation/ContainerScreenRequestActionType.h"
7#include "mc/world/inventory/simulation/ContainerValidationOperationType.h"
8#include "mc/world/inventory/simulation/ContainerValidationOutcome.h"
9
10// auto generated forward declare list
11// clang-format off
13// clang-format on
14
15struct ContainerValidationResult {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 24, ::std::vector<::ContainerValidationOperation>> mOperations;
20 ::ll::TypedStorage<4, 4, ::ContainerValidationOutcome> mOutcome;
21 ::ll::TypedStorage<1, 1, ::ContainerScreenRequestActionType> mRequestActionType;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ContainerValidationResult();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI explicit ContainerValidationResult(::ContainerValidationOutcome outcome);
32
33 MCFOLD bool isSuccess() const;
34
35 MCAPI ::ContainerValidationOperation const* tryGetOperation(::ContainerValidationOperationType type) const;
36
37 MCAPI ~ContainerValidationResult();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::ContainerValidationOutcome outcome);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCAPI void $dtor();
50 // NOLINTEND
51};
Definition ContainerValidationOperation.h:10