#ifndef _LOADERCOL_H_ #define _LOADERCOL_H_ #include #include #include #include #include /** * @class LoaderCOL * Loads collision data from COL files */ class LoaderCOL { public: /// Load the COL data into memory bool load(const std::string& file); /// Load the COL data from a file already in memory bool load(char* data, const size_t size); std::vector> instances; }; #endif