mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-02-11 14:34:22 +00:00
16 lines
270 B
C++
16 lines
270 B
C++
//++ BulliT
|
|
#if !defined(_AG_PAK_H_)
|
|
#define _AG_PAK_H_
|
|
|
|
class AgPak
|
|
{
|
|
public:
|
|
AgPak();
|
|
bool GetEntries(const AgString& sPakfile, const AgString& sSearch1, const AgString& sSearch2, AgStringList& lstEntries);
|
|
};
|
|
|
|
|
|
#endif // !defined(_AG_PAK_H_)
|
|
|
|
//-- Martin Webrant
|