Files
itgmania212121/stepmania/src/RageFileDriverDirect.h
T
2003-12-08 00:05:55 +00:00

19 lines
340 B
C++

#ifndef RAGE_FILE_DRIVER_DIRECT_H
#define RAGE_FILE_DRIVER_DIRECT_H
#include "RageFileDriver.h"
class RageFileDriverDirect: public RageFileDriver
{
public:
RageFileDriverDirect( CString root );
RageFileObj *Open( const CString &path, RageFile::OpenMode mode, RageFile &p, int &err );
bool Ready();
private:
CString root;
};
#endif