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

9 lines
276 B
C++
Raw Permalink Normal View History

2024-12-02 11:51:19 -03:00
#include "pipeline/serialization.hpp"
namespace xna {
std::shared_ptr<IntermediateSerializer> IntermediateSerializer::SingletonInstance() {
if (singletonInstance == nullptr)
singletonInstance = std::make_shared<IntermediateSerializer>();
return singletonInstance;
}