1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 17:29:55 +00:00
openmw/components/bgsm/file.cpp
2024-04-20 19:43:40 +03:00

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);
}
}