mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03: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);
|
||
|
}
|
||
|
}
|