1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/includes/pipeline/serializer.hpp
2024-11-17 17:16:51 -03:00

15 lines
277 B
C++

#ifndef XNA_PIPELINE_SERIALIZER_HPP
#define XNA_PIPELINE_SERIALIZER_HPP
#include "xna/csharp/xml.hpp"
namespace xna {
class IntermediateSerializer {
template <typename T>
static T Deserialize<T>(XmlReader& input, std::string referenceRelocationPath) {
}
};
}
#endif