mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
9 lines
276 B
C++
9 lines
276 B
C++
|
#include "pipeline/serialization.hpp"
|
||
|
|
||
|
namespace xna {
|
||
|
std::shared_ptr<IntermediateSerializer> IntermediateSerializer::SingletonInstance() {
|
||
|
if (singletonInstance == nullptr)
|
||
|
singletonInstance = std::make_shared<IntermediateSerializer>();
|
||
|
|
||
|
return singletonInstance;
|
||
|
}
|