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

14 lines
302 B
C++

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