mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
11 lines
197 B
C++
11 lines
197 B
C++
#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
|
|
|