metaforce/Runtime/Particle/CParticleElectricDataFactor...

26 lines
901 B
C++
Raw Permalink Normal View History

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