| 1234567891011121314151617181920212223242526272829303132 |
- /*
- * PolyScreenEvent.h
- * Poly
- *
- * Created by Ivan Safrin on 8/27/08.
- * Copyright 2008 __MyCompanyName__. All rights reserved.
- *
- */
- // @package Screen
- #pragma once
- #include "PolyString.h"
- #include "PolyGlobals.h"
- #include "PolyEvent.h"
- namespace Polycode {
- class _PolyExport ScreenEvent : public Event {
- public:
- ScreenEvent();
- ~ScreenEvent();
-
- static const int ENTITY_MOVE_TOP = 0;
- static const int ENTITY_MOVE_BOTTOM = 1;
- static const int ENTITY_MOVE_UP = 2;
- static const int ENTITY_MOVE_DOWN = 3;
-
- protected:
-
- };
- }
|