mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
17 lines
267 B
C++
17 lines
267 B
C++
#pragma once
|
|
|
|
#include "shared.hpp"
|
|
#include "p3d/model.hpp"
|
|
|
|
|
|
namespace ace {
|
|
namespace p3d {
|
|
class parser {
|
|
public:
|
|
parser();
|
|
~parser();
|
|
|
|
model_p load(const std::string &);
|
|
};
|
|
};
|
|
}; |