Files
2024-08-20 20:19:54 -04:00

22 lines
674 B
C++

#pragma once
#include "Game/LiveActor/ShadowVolumeDrawer.hpp"
class ShadowVolumeLine : public ShadowVolumeDrawer {
public:
ShadowVolumeLine();
virtual ~ShadowVolumeLine();
virtual void loadModelDrawMtx() const;
virtual void drawShape() const;
void setFromShadowController(const ShadowController *);
void setToShadowController(const ShadowController *);
void setFromWidth(f32);
void setToWidth(f32);
const ShadowController* mFromShadowController; // 0x1C
const ShadowController* mToShadowController; // 0x20
f32 mFromWidth; // 0x24
f32 mToWidth; // 0x28
};