mirror of https://github.com/PrimeDecomp/prime.git
15 lines
166 B
C++
15 lines
166 B
C++
|
#ifndef _CDVDFILE_HPP
|
||
|
#define _CDVDFILE_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
class CDvdFile {
|
||
|
public:
|
||
|
static bool FileExists(const char*);
|
||
|
|
||
|
private:
|
||
|
u8 pad[0x28];
|
||
|
};
|
||
|
|
||
|
#endif
|