Files
projectm/src/projectM-engine/VideoEcho.hpp
psperl 18dbb1576a Video Echo Classes
git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@1078 6778bc44-b910-0410-a7a0-be141de4315d
2008-06-30 03:04:41 +00:00

32 lines
408 B
C++

/*
* VideoEcho.hpp
*
* Created on: Jun 29, 2008
* Author: pete
*/
#ifndef VIDEOECHO_HPP_
#define VIDEOECHO_HPP_
#include "Renderable.hpp"
enum Orientation
{
Normal=0, FlipX, FlipY, FlipXY
};
class VideoEcho: public RenderItem
{
public:
VideoEcho();
virtual ~VideoEcho();
float a;
float zoom;
Orientation orientation;
void Draw(RenderContext &context);
};
#endif /* VIDEOECHO_HPP_ */