mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-01-07 12:42:00 -05:00
11 lines
177 B
C++
11 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
|