mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
22 lines
674 B
C++
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
|
|
}; |