You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
270 B
16 lines
270 B
8 years ago
|
//++ 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
|