Add snapshot for Lime legacy
This commit is contained in:
23
legacy/project/include/Video.h
Normal file
23
legacy/project/include/Video.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef VIDEO_H
|
||||
#define VIDEO_H
|
||||
|
||||
#include "Display.h"
|
||||
|
||||
namespace nme {
|
||||
|
||||
class Video : public DisplayObject {
|
||||
public:
|
||||
bool smoothing;
|
||||
|
||||
static Video *Create(int inWidth, int inHeight);
|
||||
|
||||
virtual void Play() = 0;
|
||||
virtual void Clear() = 0;
|
||||
|
||||
virtual bool Load(const char *inFilename) = 0;
|
||||
virtual void Render(const RenderTarget &inTarget, const RenderState &inState) = 0;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user