Move the external file format stuff into its own module.

This commit is contained in:
David Given
2024-10-15 00:46:46 +02:00
parent ea4a147751
commit 7983a4b883
40 changed files with 96 additions and 154 deletions

9
lib/external/fl2.h vendored Normal file
View File

@@ -0,0 +1,9 @@
#ifndef FL2_H
#define FL2_H
class FluxFileProto;
extern FluxFileProto loadFl2File(const std::string filename);
extern void saveFl2File(const std::string filename, FluxFileProto& proto);
#endif