LeviLamina
Loading...
Searching...
No Matches
TrustingComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Actor;
9class Item;
10class Player;
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<4, 4, float> mChance;
18 ::ll::TypedStorage<8, 16, ::std::set<::Item const*>> mTrustItems;
19 // NOLINTEND
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI void _becomeTrusting(::Actor& owner);
25
26 MCAPI bool getInteraction(::Actor& owner, ::Player& player, ::ActorInteraction& interaction);
27 // NOLINTEND
28};
Definition ActorInteraction.h:5
Definition Actor.h:104
Definition Item.h:65
Definition Player.h:119
Definition TrustingComponent.h:13