mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
309 B
C++
21 lines
309 B
C++
9 months ago
|
#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);
|
||
|
}
|
||
|
}
|