mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
17 lines
360 B
C++
17 lines
360 B
C++
#include "Game/LiveActor/ShadowDrawer.hpp"
|
|
|
|
ShadowDrawer::ShadowDrawer(const char *pName) : NameObj(pName) {
|
|
mController = 0;
|
|
}
|
|
|
|
ShadowController* ShadowDrawer::getController() const {
|
|
return mController;
|
|
}
|
|
|
|
void ShadowDrawer::setShadowController(ShadowController *pController) {
|
|
mController = pController;
|
|
}
|
|
|
|
ShadowDrawer::~ShadowDrawer() {
|
|
|
|
} |