mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-21 13:53:30 +00:00
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
|