Remove return values from initialize and deinitialize functions

This commit is contained in:
Alexander Bock
2017-07-28 17:51:25 -04:00
parent acd95b05ab
commit 31377466ba
66 changed files with 198 additions and 320 deletions

View File

@@ -139,6 +139,10 @@ Renderable::Renderable(const ghoul::Dictionary& dictionary)
Renderable::~Renderable() {}
void Renderable::initialize() {}
void Renderable::deinitialize() {}
void Renderable::setBoundingSphere(float boundingSphere) {
_boundingSphere = boundingSphere;
}