Blame loader.h

57bda0
57bda0
#ifndef LOADER_H
57bda0
#define LOADER_H
57bda0
57bda0
57bda0
#include "track.h"
8ee194
#include "model.h"
57bda0
57bda0
57bda0
class Loader {
57bda0
public:
57bda0
    static bool load(Track &track, const std::string &filename);
8ee194
    static bool load(Model &model, const std::string &filename);
1bcd85
1bcd85
    static bool save(const Track &track, const std::string &filename);
57bda0
};
57bda0
57bda0
57bda0
#endif