diff options
| author | Aetias <aetias@outlook.com> | 2025-02-04 21:30:00 +0100 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2025-02-04 21:30:00 +0100 |
| commit | c380ac51a48d17348b1cdcbb615ce22be22f409e (patch) | |
| tree | 6713ed5a1cd172f665e52ea0f995fc905ca3db2d /src/04_Load/Player | |
| parent | 8cda3ca2d7f5fe424cc1a649baec2ff992368e62 (diff) | |
| parent | 3f7197110627adbbe7ff1f69db1f5a15f9b6c598 (diff) | |
Merge remote-tracking branch 'zeldaret/main' into decomp-PlayerControl
Diffstat (limited to 'src/04_Load/Player')
| -rw-r--r-- | src/04_Load/Player/EquipItem.cpp | 5 | ||||
| -rw-r--r-- | src/04_Load/Player/EquipShield.cpp | 4 | ||||
| -rw-r--r-- | src/04_Load/Player/EquipSword.cpp | 4 | ||||
| -rw-r--r-- | src/04_Load/Player/LinkStateBase.cpp | 5 | ||||
| -rw-r--r-- | src/04_Load/Player/LinkStateCutscene.cpp | 5 | ||||
| -rw-r--r-- | src/04_Load/Player/LinkStateDamage.cpp | 6 | ||||
| -rw-r--r-- | src/04_Load/Player/LinkStateFollow.cpp | 5 | ||||
| -rw-r--r-- | src/04_Load/Player/LinkStateInteract.cpp | 5 | ||||
| -rw-r--r-- | src/04_Load/Player/LinkStateItem.cpp | 5 | ||||
| -rw-r--r-- | src/04_Load/Player/LinkStateMove.cpp | 5 | ||||
| -rw-r--r-- | src/04_Load/Player/LinkStateRoll.cpp | 5 | ||||
| -rw-r--r-- | src/04_Load/Player/PlayerBase.cpp | 4 | ||||
| -rw-r--r-- | src/04_Load/Player/PlayerControl.cpp | 9 | ||||
| -rw-r--r-- | src/04_Load/Player/PlayerControlData.cpp | 7 | ||||
| -rw-r--r-- | src/04_Load/Player/PlayerLinkBase.cpp | 6 | ||||
| -rw-r--r-- | src/04_Load/Player/PlayerManager.cpp | 8 |
16 files changed, 88 insertions, 0 deletions
diff --git a/src/04_Load/Player/EquipItem.cpp b/src/04_Load/Player/EquipItem.cpp new file mode 100644 index 00000000..1192a561 --- /dev/null +++ b/src/04_Load/Player/EquipItem.cpp @@ -0,0 +1,5 @@ +#include "Player/EquipItem.hpp" + +EquipItem::EquipItem() {} +EquipItem::~EquipItem() {} +void EquipItem::vfunc_10() {} diff --git a/src/04_Load/Player/EquipShield.cpp b/src/04_Load/Player/EquipShield.cpp new file mode 100644 index 00000000..9dac9b72 --- /dev/null +++ b/src/04_Load/Player/EquipShield.cpp @@ -0,0 +1,4 @@ +#include "Player/EquipShield.hpp" + +EquipShield::EquipShield() {} +EquipShield::~EquipShield() {} diff --git a/src/04_Load/Player/EquipSword.cpp b/src/04_Load/Player/EquipSword.cpp new file mode 100644 index 00000000..d1ce0b39 --- /dev/null +++ b/src/04_Load/Player/EquipSword.cpp @@ -0,0 +1,4 @@ +#include "Player/EquipSword.hpp" + +EquipSword::EquipSword() {} +EquipSword::~EquipSword() {} diff --git a/src/04_Load/Player/LinkStateBase.cpp b/src/04_Load/Player/LinkStateBase.cpp new file mode 100644 index 00000000..183d78a4 --- /dev/null +++ b/src/04_Load/Player/LinkStateBase.cpp @@ -0,0 +1,5 @@ +#include "Player/LinkStateBase.hpp" + +LinkStateBase::LinkStateBase(PlayerLinkBase *link) {} +LinkStateBase::~LinkStateBase() {} +void LinkStateBase::CreateDebugHierarchy() {} diff --git a/src/04_Load/Player/LinkStateCutscene.cpp b/src/04_Load/Player/LinkStateCutscene.cpp new file mode 100644 index 00000000..2d68fa4d --- /dev/null +++ b/src/04_Load/Player/LinkStateCutscene.cpp @@ -0,0 +1,5 @@ +#include "Player/LinkStateCutscene.hpp" + +LinkStateCutscene::LinkStateCutscene(PlayerLinkBase *link) : + LinkStateBase(link) {} +LinkStateCutscene::~LinkStateCutscene() {} diff --git a/src/04_Load/Player/LinkStateDamage.cpp b/src/04_Load/Player/LinkStateDamage.cpp new file mode 100644 index 00000000..2eecae46 --- /dev/null +++ b/src/04_Load/Player/LinkStateDamage.cpp @@ -0,0 +1,6 @@ +#include "Player/LinkStateDamage.hpp" + +LinkStateDamage::LinkStateDamage(PlayerLinkBase *link) : + LinkStateBase(link) {} +unk32 *_Z19func_ov004_021083f4Piiii(unk32 *param1, unk32 param2, unk32 param3, unk32 param4) {} +LinkStateDamage::~LinkStateDamage() {} diff --git a/src/04_Load/Player/LinkStateFollow.cpp b/src/04_Load/Player/LinkStateFollow.cpp new file mode 100644 index 00000000..72e3789b --- /dev/null +++ b/src/04_Load/Player/LinkStateFollow.cpp @@ -0,0 +1,5 @@ +#include "Player/LinkStateFollow.hpp" + +LinkStateFollow::LinkStateFollow(PlayerLinkBase *link) : + LinkStateBase(link) {} +LinkStateFollow::~LinkStateFollow() {} diff --git a/src/04_Load/Player/LinkStateInteract.cpp b/src/04_Load/Player/LinkStateInteract.cpp new file mode 100644 index 00000000..7775cf81 --- /dev/null +++ b/src/04_Load/Player/LinkStateInteract.cpp @@ -0,0 +1,5 @@ +#include "Player/LinkStateInteract.hpp" + +LinkStateInteract::LinkStateInteract(PlayerLinkBase *link) : + LinkStateBase(link) {} +LinkStateInteract::~LinkStateInteract() {} diff --git a/src/04_Load/Player/LinkStateItem.cpp b/src/04_Load/Player/LinkStateItem.cpp new file mode 100644 index 00000000..b6d31fea --- /dev/null +++ b/src/04_Load/Player/LinkStateItem.cpp @@ -0,0 +1,5 @@ +#include "Player/LinkStateItem.hpp" + +LinkStateItem::LinkStateItem(PlayerLinkBase *link) : + LinkStateBase(link) {} +LinkStateItem::~LinkStateItem() {} diff --git a/src/04_Load/Player/LinkStateMove.cpp b/src/04_Load/Player/LinkStateMove.cpp new file mode 100644 index 00000000..ffd5c89e --- /dev/null +++ b/src/04_Load/Player/LinkStateMove.cpp @@ -0,0 +1,5 @@ +#include "Player/LinkStateMove.hpp" + +LinkStateMove::LinkStateMove(PlayerLinkBase *link) : + LinkStateBase(link) {} +LinkStateMove::~LinkStateMove() {} diff --git a/src/04_Load/Player/LinkStateRoll.cpp b/src/04_Load/Player/LinkStateRoll.cpp new file mode 100644 index 00000000..f2eea62f --- /dev/null +++ b/src/04_Load/Player/LinkStateRoll.cpp @@ -0,0 +1,5 @@ +#include "Player/LinkStateRoll.hpp" + +LinkStateRoll::LinkStateRoll(PlayerLinkBase *link) : + LinkStateBase(link) {} +LinkStateRoll::~LinkStateRoll() {} diff --git a/src/04_Load/Player/PlayerBase.cpp b/src/04_Load/Player/PlayerBase.cpp new file mode 100644 index 00000000..de9d78a3 --- /dev/null +++ b/src/04_Load/Player/PlayerBase.cpp @@ -0,0 +1,4 @@ +#include "Player/PlayerBase.hpp" + +PlayerBase::PlayerBase() {} +PlayerBase::~PlayerBase() {} diff --git a/src/04_Load/Player/PlayerControl.cpp b/src/04_Load/Player/PlayerControl.cpp new file mode 100644 index 00000000..19c9ab7a --- /dev/null +++ b/src/04_Load/Player/PlayerControl.cpp @@ -0,0 +1,9 @@ +#include "Player/PlayerControl.hpp" + +PlayerControl::PlayerControl() {} +PlayerControl::~PlayerControl() {} +void PlayerControl::Create() {} +void PlayerControl::Destroy() {} +void PlayerControl::Init() {} +void PlayerControl::func_ov004_0210b1d0() {} +void PlayerControl::func_ov004_0210b1f0() {} diff --git a/src/04_Load/Player/PlayerControlData.cpp b/src/04_Load/Player/PlayerControlData.cpp new file mode 100644 index 00000000..a9be443d --- /dev/null +++ b/src/04_Load/Player/PlayerControlData.cpp @@ -0,0 +1,7 @@ +#include "Player/PlayerControlData.hpp" + +PlayerControlData::PlayerControlData() {} +PlayerControlData::~PlayerControlData() {} +void func_ov004_0210b634(unk32 *param1) {} +void PlayerControlData::vfunc_18() {} +void PlayerControlData::vfunc_1c() {} diff --git a/src/04_Load/Player/PlayerLinkBase.cpp b/src/04_Load/Player/PlayerLinkBase.cpp new file mode 100644 index 00000000..ab82b4dd --- /dev/null +++ b/src/04_Load/Player/PlayerLinkBase.cpp @@ -0,0 +1,6 @@ +#include "Player/PlayerLinkBase.hpp" + +PlayerLinkBase::PlayerLinkBase() {} +PlayerLinkBase::~PlayerLinkBase() {} +void PlayerLinkBase::Init() {} +void PlayerLinkBase::vfunc_20() {} diff --git a/src/04_Load/Player/PlayerManager.cpp b/src/04_Load/Player/PlayerManager.cpp new file mode 100644 index 00000000..d7e5cdb9 --- /dev/null +++ b/src/04_Load/Player/PlayerManager.cpp @@ -0,0 +1,8 @@ +#include "Player/PlayerManager.hpp" + +void PlayerManager::Create() {} +void PlayerManager::Destroy() {} +PlayerManager::PlayerManager() {} +PlayerManager::~PlayerManager() {} +void PlayerManager::Init(bool param1) {} +void PlayerManager::func_ov004_02108008() {} |
