Clone of Akilla's ac2d @ https://github.com/deregtd/AC2D

IResizeEvent.h 233B

12345678910111213
  1. #ifndef IRESIZEEVENT_H
  2. #define IRESIZEEVENT_H
  3. class IWindow;
  4. class IResizeEvent
  5. {
  6. public:
  7. virtual bool OnResize( IWindow &Window, float NewWidth, float NewHeight ) = 0;
  8. virtual bool OnResized( IWindow &Window ) = 0;
  9. };
  10. #endif