mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
14 lines
384 B
C++
14 lines
384 B
C++
#include "Game/LiveActor/ShadowVolumeModel.hpp"
|
|
#include "Game/Util.hpp"
|
|
|
|
ShadowVolumeModel::ShadowVolumeModel(const char *pName) : ShadowVolumeDrawer(pName) {
|
|
mModelData = 0;
|
|
}
|
|
|
|
void ShadowVolumeModel::initVolumeModel(const char *pModelName) {
|
|
mModelData = MR::getJ3DModelData(pModelName);
|
|
}
|
|
|
|
void ShadowVolumeModel::drawShape() const {
|
|
MR::drawSimpleModel(mModelData);
|
|
} |