Blob Blame Raw

#ifndef LOADER_H
#define LOADER_H


#include "track.h"
#include "model.h"


class Loader {
public:
    static bool load(Track &track, const std::string &filename);
    static bool load(Model &model, const std::string &filename);

    static bool save(const Track &track, const std::string &filename);
};


#endif