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

ResizeEventAbstractor.h 324B

1234567891011121314
  1. #ifndef RESIZEEVENTABSTRACTOR_H
  2. #define RESIZEEVENTABSTRACTOR_H
  3. #include "Interfaces/IResizeEvent.h"
  4. template< class T >
  5. class ResizeEventAbstractor : public IResizeEvent
  6. {
  7. public:
  8. virtual bool OnResize( IWindow &Window, float NewWidth, float NewHeight ) = 0;
  9. virtual bool OnResized( IWindow &Window ) = 0;
  10. };
  11. #endif