mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-19 03:07:58 -05:00
Declare BrushWrapper as todo
This commit is contained in:
@ -65,6 +65,12 @@ void MapFileDumper::Init() const
|
||||
m_stream << "\"The Map\" flags\n";
|
||||
}
|
||||
|
||||
void MapFileDumper::WriteComment(const std::string& key) const
|
||||
{
|
||||
Indent();
|
||||
m_stream << "// " << key << "\n";
|
||||
}
|
||||
|
||||
void MapFileDumper::BeginEntity()
|
||||
{
|
||||
assert(!m_flags.m_in_entity);
|
||||
|
@ -58,6 +58,7 @@ public:
|
||||
explicit MapFileDumper(std::ostream& stream);
|
||||
|
||||
void Init() const;
|
||||
void WriteComment(const std::string& key) const;
|
||||
|
||||
void BeginEntity();
|
||||
void EndEntity();
|
||||
|
Reference in New Issue
Block a user