animate.h 177 B

1234567891011
  1. #ifndef _ANIMATE_H
  2. #define _ANIMATE_H
  3. #include <bfc/wasabi_std.h>
  4. class AnimatedRects {
  5. public:
  6. static void draw(const RECT *src, const RECT *dst, int nsteps=5);
  7. };
  8. #endif