This commit is contained in:
Steve Checkoway
2006-09-08 06:26:31 +00:00
parent e9651a568f
commit 2a0692f4ed
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
#ifndef SELECTOR_DIALOG
#define SELECTOR_DIALOG
#ifndef SELECTOR_DIALOG_H
#define SELECTOR_DIALOG_H
#include "arch/arch_platform.h"
@@ -9,13 +9,13 @@ public:
RageMovieTexture( RageTextureID ID ): RageTexture(ID) { }
virtual ~RageMovieTexture() { }
virtual RString Init() { return RString(); }
virtual void Update(float fDeltaTime) { }
virtual void Update( float fDeltaTime ) { }
virtual void Reload() = 0;
virtual void SetPosition( float fSeconds ) = 0;
virtual void SetPlaybackRate( float fRate ) = 0;
virtual void SetLooping(bool looping=true) { }
virtual void SetLooping( bool looping=true ) { }
bool IsAMovie() const { return true; }