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++
Raw Permalink Normal View History

2024-11-08 11:13:44 -03:00
#ifndef XNA_PIPELINE_DEFAULT_HPP
#define XNA_PIPELINE_DEFAULT_HPP
#include "xna/default.hpp"
namespace xna {
class ContentTypeWriter;
class ContentTypeWriterFactory;
class ContentCompiler;
class ContentWriter;
2024-11-08 11:13:44 -03:00
using P_ContentTypeWriter = sptr<ContentTypeWriter>;
using P_ContentTypeWriterFactory = sptr<ContentTypeWriterFactory>;
using P_ContentCompiler = sptr<ContentCompiler>;
using P_ContentWriter = sptr<ContentWriter>;
2024-11-08 11:13:44 -03:00
}
#endif