prepare for presentation

This commit is contained in:
MonsterDruide1 2025-12-07 11:25:39 +01:00
parent 92fad74af1
commit 307e7bc79d
3 changed files with 12 additions and 14 deletions

View file

@ -123644,20 +123644,20 @@ Player/PlayerJudgeForceLand.o:
label:
- _ZN20PlayerJudgeForceLandC1EPK6IJudgePK13PlayerTrigger
- _ZN20PlayerJudgeForceLandC2EPK6IJudgePK13PlayerTrigger
status: Matching
status: NotDecompiled
- offset: 0x4595dc
size: 64
label: _ZNK20PlayerJudgeForceLand5judgeEv
status: Matching
status: NotDecompiled
- offset: 0x45961c
size: 4
label: _ZN20PlayerJudgeForceLand5resetEv
status: Matching
status: NotDecompiled
lazy: true
- offset: 0x459620
size: 4
label: _ZN20PlayerJudgeForceLand6updateEv
status: Matching
status: NotDecompiled
lazy: true
Player/PlayerJudgeForceRolling.o:
'.text':

View file

@ -3,10 +3,10 @@
#include "Player/PlayerTrigger.h"
#include "Util/JudgeUtil.h"
PlayerJudgeForceLand::PlayerJudgeForceLand(const IJudge* judgeLongFall,
const PlayerTrigger* trigger)
: mJudgeLongFall(judgeLongFall), mTrigger(trigger) {}
//PlayerJudgeForceLand::PlayerJudgeForceLand(const IJudge* judgeLongFall, const PlayerTrigger* trigger) {}
bool PlayerJudgeForceLand::judge() const {
return rs::isJudge(mJudgeLongFall) || mTrigger->isOn(PlayerTrigger::EActionTrigger_val11);
}
//void PlayerJudgeForceLand::reset() {}
//void PlayerJudgeForceLand::update() {}
//bool PlayerJudgeForceLand::judge() const {}

View file

@ -8,10 +8,8 @@ class PlayerJudgeForceLand : public IJudge {
public:
PlayerJudgeForceLand(const IJudge* judgeLongFall, const PlayerTrigger* trigger);
void reset() override {}
void update() override {}
void reset() override;
void update() override;
bool judge() const override;
private: