12 lines
177 B
C++
12 lines
177 B
C++
#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
|