Etterna 0.74.4
Loading...
Searching...
No Matches
NotesWriterETT.h
1#ifndef NOTES_WRITER_ETT_H
2#define NOTES_WRITER_ETT_H
3
4#include "Etterna/Globals/global.h"
5
6class Song;
7class Steps;
8
10namespace NotesWriterETT {
18bool
19Write(std::string& sPath, const Song& out, const std::vector<Steps*>& vpStepsToSave);
20}
21
22#endif
Holds all music metadata and steps for one song.
Definition Song.h:65
Holds note information for a Song.
Definition Steps.h:42
Writes a Song to a .ETT file.
Definition NotesWriterETT.h:10
bool Write(std::string &sPath, const Song &out, const std::vector< Steps * > &vpStepsToSave)
Write the song out to a file.
Definition NotesWriterETT.cpp:459