diff options
| author | Aetias <144526980+AetiasHax@users.noreply.github.com> | 2026-05-09 12:36:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-09 12:36:22 +0200 |
| commit | e9ffe114a97fd3bf563a8c346f2ef2dc5e88f9fd (patch) | |
| tree | 71b1e9895021bcf152c965a87baf1a9d7c7dd699 /src/31_Shop/Actor/ActorBeedle.cpp | |
| parent | b44496319d3027a625fcf876cf22e467720355df (diff) | |
Delink character actor base classes and shop keeper actors (#152)
* Delink .text for ActorItemSeller, ActorBeedle, ActorTetra
* Delink .text for ActorCharacterBase, ActorCharacter, ActorGenericCharacter
* Define classes ActorCharacterBase, ActorCharacter, ActorGenericCharacter
* Don't define `override` macro during intellisense/clangd
* Define symbols for ActorCharacter, ActorCharacterBase, ActorGenericCharacter
* Define classes and symbols for ActorItemSeller, ActorBeedle, ActorTetra
* Fix duplicate symbol
Diffstat (limited to 'src/31_Shop/Actor/ActorBeedle.cpp')
| -rw-r--r-- | src/31_Shop/Actor/ActorBeedle.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/31_Shop/Actor/ActorBeedle.cpp b/src/31_Shop/Actor/ActorBeedle.cpp new file mode 100644 index 00000000..0daf9d03 --- /dev/null +++ b/src/31_Shop/Actor/ActorBeedle.cpp @@ -0,0 +1,31 @@ +#include "Actor/Character/ActorItemSeller.hpp" + +ActorBeedle *ActorBeedle::Create() {} + +bool ActorBeedle::Init() {} +void ActorBeedle::vfunc_c4() {} +void ActorBeedle::vfunc_114() {} +unk32 ActorBeedle::vfunc_d4() {} + +static unk32 func_ov031_02180e44(unk32 param1, unk32 param2) {} + +void ActorBeedle::vfunc_f4() {} +void ActorBeedle::vfunc_f8() {} +void ActorBeedle::vfunc_fc() {} +void ActorBeedle::vfunc_100() {} +void ActorBeedle::vfunc_104() {} +unk32 ActorBeedle::vfunc_d8() {} +unk32 ActorBeedle::vfunc_dc() {} +unk32 ActorBeedle::vfunc_e0() {} +bool ActorBeedle::vfunc_70() {} +bool ActorBeedle::vfunc_6c() {} +void ActorBeedle::vfunc_108() {} +void ActorBeedle::vfunc_10c() {} +void ActorBeedle::vfunc_110() {} + +unk32 ActorBeedle::func_ov031_021812e4(unk32 param1) {} +void ActorBeedle::func_ov031_0218132c(unk32 param1) {} + +void ActorBeedle::vfunc_11c() {} +void ActorBeedle::vfunc_118() {} +ActorBeedle::~ActorBeedle() {} |
