mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 17:29:55 +00:00
20 lines
309 B
C++
20 lines
309 B
C++
#include "file.hpp"
|
|
|
|
#include "stream.hpp"
|
|
|
|
namespace Bgsm
|
|
{
|
|
void MaterialFile::read(BGSMStream& stream)
|
|
{
|
|
}
|
|
|
|
void BGSMFile::read(BGSMStream& stream)
|
|
{
|
|
MaterialFile::read(stream);
|
|
}
|
|
|
|
void BGEMFile::read(BGSMStream& stream)
|
|
{
|
|
MaterialFile::read(stream);
|
|
}
|
|
}
|