mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-11 11:33:01 +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
|