mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 23:53:57 +00:00
24 lines
No EOL
433 B
C++
24 lines
No EOL
433 B
C++
#ifndef CSM_WOLRD_INFOCOLLECTION_H
|
|
#define CSM_WOLRD_INFOCOLLECTION_H
|
|
|
|
#include "collection.hpp"
|
|
#include "info.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
class Dialogue;
|
|
}
|
|
|
|
namespace CSMWorld
|
|
{
|
|
class InfoCollection : public Collection<Info, IdAccessor<Info> >
|
|
{
|
|
void load (const Info& record, bool base);
|
|
|
|
public:
|
|
|
|
void load (ESM::ESMReader& reader, bool base, const ESM::Dialogue& dialogue);
|
|
};
|
|
}
|
|
|
|
#endif |