PolyScreenEvent.h 564 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * PolyScreenEvent.h
  3. * Poly
  4. *
  5. * Created by Ivan Safrin on 8/27/08.
  6. * Copyright 2008 __MyCompanyName__. All rights reserved.
  7. *
  8. */
  9. // @package Screen
  10. #pragma once
  11. #include "PolyString.h"
  12. #include "PolyGlobals.h"
  13. #include "PolyEvent.h"
  14. namespace Polycode {
  15. class _PolyExport ScreenEvent : public Event {
  16. public:
  17. ScreenEvent();
  18. ~ScreenEvent();
  19. static const int ENTITY_MOVE_TOP = 0;
  20. static const int ENTITY_MOVE_BOTTOM = 1;
  21. static const int ENTITY_MOVE_UP = 2;
  22. static const int ENTITY_MOVE_DOWN = 3;
  23. protected:
  24. };
  25. }