You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
388 B
C++
17 lines
388 B
C++
11 years ago
|
#ifndef BSA_BSA_RESOURCES_H
|
||
|
#define BSA_BSA_RESOURCES_H
|
||
|
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
|
||
|
#include "../files/collections.hpp"
|
||
|
|
||
|
namespace Bsa
|
||
|
{
|
||
|
void registerResources (const Files::Collections& collections,
|
||
|
const std::vector<std::string>& archives, bool useLooseFiles, bool fsStrict);
|
||
|
///< Register resources directories and archives as OGRE resources groups
|
||
|
}
|
||
|
|
||
|
#endif
|