mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
13 lines
248 B
C++
13 lines
248 B
C++
#ifndef XNA_PIPELINE_COMPILER_HPP
|
|
#define XNA_PIPELINE_COMPILER_HPP
|
|
|
|
#include "../default.hpp"
|
|
|
|
namespace xna {
|
|
class ContentCompiler {
|
|
public:
|
|
P_ContentTypeWriter GetTypeWriter(Type const& type, std::vector<P_Type> dependencies);
|
|
};
|
|
}
|
|
|
|
#endif |