LeviLamina
Loading...
Searching...
No Matches
AppliedPotionUtil.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class ItemStackBase;
8class Potion;
9// clang-format on
10
11namespace AppliedPotionUtil {
12// functions
13// NOLINTBEGIN
14MCNAPI void applyPotionToItem(::ItemStackBase& item, ::std::shared_ptr<::Potion const> const& potion);
15
16MCNAPI ::std::optional<int>
17calculateAppliedPotionAuxValue(::std::shared_ptr<::Potion const> const& potion, ::ItemStackBase const& item);
18// NOLINTEND
19
20} // namespace AppliedPotionUtil
Definition ItemStackBase.h:52
Definition Potion.h:16