mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-24 11:11:02 -07:00
10 lines
196 B
C++
10 lines
196 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
|