mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-19 14:45:52 +01:00
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
|