mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-09-19 20:26:10 +08:00
16 lines
202 B
C
16 lines
202 B
C
![]() |
#ifndef IFILELIST_H
|
||
|
#define IFILELIST_H
|
||
|
#ifdef _WIN32
|
||
|
#endif
|
||
|
|
||
|
|
||
|
class IFileList
|
||
|
{
|
||
|
public:
|
||
|
virtual bool IsFileInList(const char* pFilename) = 0;
|
||
|
virtual void Release() = 0;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|