PolySceneEntity.h 704 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * PolySceneEntity.h
  3. * TAU
  4. *
  5. * Created by Ivan Safrin on 3/18/08.
  6. * Copyright 2008 __MyCompanyName__. All rights reserved.
  7. *
  8. */
  9. // @package Scene
  10. #pragma once
  11. #include "PolyLogger.h"
  12. #include "PolyGlobals.h"
  13. #include "PolyRenderer.h"
  14. #include "PolyVector3.h"
  15. #include "PolyMatrix4.h"
  16. #include "PolyQuaternion.h"
  17. #include "PolyEntity.h"
  18. #include "PolyEventHandler.h"
  19. #include <vector>
  20. using std::vector;
  21. namespace Polycode {
  22. class _PolyExport SceneEntity : public Entity, public EventHandler {
  23. public:
  24. SceneEntity();
  25. virtual ~SceneEntity();
  26. virtual bool testMouseCollision(float x, float y) { return false;}
  27. void ok() { Logger::log("ok!!1\n"); }
  28. protected:
  29. };
  30. }