1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/includes/pipeline/default.hpp

18 lines
444 B
C++

#ifndef XNA_PIPELINE_DEFAULT_HPP
#define XNA_PIPELINE_DEFAULT_HPP
#include "xna/default.hpp"
namespace xna {
class ContentTypeWriter;
class ContentTypeWriterFactory;
class ContentCompiler;
class ContentWriter;
using P_ContentTypeWriter = sptr<ContentTypeWriter>;
using P_ContentTypeWriterFactory = sptr<ContentTypeWriterFactory>;
using P_ContentCompiler = sptr<ContentCompiler>;
using P_ContentWriter = sptr<ContentWriter>;
}
#endif