mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-05 11:53:30 +00:00
13 lines
213 B
C++
13 lines
213 B
C++
#ifndef _IDVDREQUEST
|
|
#define _IDVDREQUEST
|
|
|
|
|
|
class IDvdRequest {
|
|
public:
|
|
virtual ~IDvdRequest() = 0; // 8
|
|
virtual void Unknown1(bool) = 0; // c
|
|
virtual bool IsComplete() = 0; // 10
|
|
};
|
|
|
|
#endif // _IDVDREQUEST
|