mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-29 09:15:35 +00:00
21 lines
309 B
C++
21 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);
|
||
|
}
|
||
|
}
|