metaforce/Runtime/Particle/CParticleElectricDataFactor...

26 lines
883 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-02-10 22:54:47 +00:00
#include <memory>
#include "Runtime/CFactoryMgr.hpp"
#include "Runtime/CToken.hpp"
#include "Runtime/IOStreams.hpp"
#include "Runtime/IObj.hpp"
#include "Runtime/RetroTypes.hpp"
2016-02-10 22:54:47 +00:00
2018-12-08 05:30:43 +00:00
namespace urde {
2016-02-10 22:54:47 +00:00
class CElectricDescription;
class CSimplePool;
2018-12-08 05:30:43 +00:00
class CParticleElectricDataFactory {
static std::unique_ptr<CElectricDescription> CreateElectricDescription(CInputStream& in, CSimplePool* resPool);
2018-12-08 05:30:43 +00:00
static bool CreateELSM(CElectricDescription* desc, CInputStream& in, CSimplePool* resPool);
static void LoadELSMTokens(CElectricDescription* desc);
2016-02-13 08:23:17 +00:00
public:
static std::unique_ptr<CElectricDescription> GetGeneratorDesc(CInputStream& in, CSimplePool* resPool);
2016-02-10 22:54:47 +00:00
};
2017-02-13 21:29:00 +00:00
CFactoryFnReturn FParticleElectricDataFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& vparms,
CObjectReference*);
2018-12-08 05:30:43 +00:00
} // namespace urde