mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-09 00:38:22 +00:00
27 lines
520 B
C++
27 lines
520 B
C++
#pragma once
|
|
|
|
#include "Library/Anim/DitherAnimator.h"
|
|
#include "Library/LiveActor/LiveActor.h"
|
|
|
|
namespace al {
|
|
class BackHideDitherAnimator : public DitherAnimator {
|
|
public:
|
|
BackHideDitherAnimator(LiveActor* actor);
|
|
|
|
void update() override;
|
|
|
|
private:
|
|
LiveActor* mActor;
|
|
};
|
|
|
|
class BackHideParts : public LiveActor {
|
|
public:
|
|
BackHideParts(const char* name);
|
|
|
|
void init(const ActorInitInfo& info) override;
|
|
|
|
private:
|
|
BackHideDitherAnimator* mBackHideDitherAnimator = nullptr;
|
|
};
|
|
} // namespace al
|