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