mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-03-04 14:35:10 +00:00
git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@1055 6778bc44-b910-0410-a7a0-be141de4315d
23 lines
291 B
C++
23 lines
291 B
C++
/*
|
|
* PipelineContext.hpp
|
|
*
|
|
* Created on: Jun 22, 2008
|
|
* Author: pete
|
|
*/
|
|
|
|
#ifndef PIPELINECONTEXT_HPP_
|
|
#define PIPELINECONTEXT_HPP_
|
|
|
|
class PipelineContext
|
|
{
|
|
public:
|
|
int fps;
|
|
float time;
|
|
int frame;
|
|
float progress;
|
|
|
|
PipelineContext();
|
|
};
|
|
|
|
#endif /* PIPELINECONTEXT_HPP_ */
|