prime/include/Kyoto/CDvdFile.hpp
Luke Street bed1bb88de Reorganize includes to match asm
Former-commit-id: 848752477e6833629bb0ce30125ca6f5dbffccd1
2022-07-18 18:42:58 -04:00

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