mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
15 lines
277 B
C++
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 |