BlockComponent.cpp 224 B

123456789101112131415
  1. #include "BlockComponent.h"
  2. BlockComponent::BlockComponent()
  3. : Framework::ReferenceCounter()
  4. {}
  5. bool BlockComponent::isLightSource() const
  6. {
  7. return 0;
  8. }
  9. int BlockComponent::getLightColor() const
  10. {
  11. return 0;
  12. }