openmw/components/bgsm/file.cpp

21 lines
309 B
C++
Raw Normal View History

2024-04-17 22:53:55 +03:00
#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);
}
}