GhostNode.h 297 B

1234567891011121314151617181920
  1. #ifndef _GHOSTNODE_H_
  2. #define _GHOSTNODE_H_
  3. #include "Common.h"
  4. #include "SceneNode.h"
  5. /**
  6. * This is a node that does nothing
  7. */
  8. class GhostNode: public SceneNode
  9. {
  10. public:
  11. GhostNode(): SceneNode(NT_GHOST) { }
  12. void init( const char* ) {}
  13. void render() {}
  14. void deinit() {}
  15. };
  16. #endif