mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 01:07:43 +00:00
More factory stubs
This commit is contained in:
26
Runtime/Particle/CParticleElectricDataFactory.hpp
Normal file
26
Runtime/Particle/CParticleElectricDataFactory.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef __RETRO_CPARTICLEELECTRICDATAFACTORY_HPP__
|
||||
#define __RETRO_CPARTICLEELECTRICDATAFACTORY_HPP__
|
||||
|
||||
#include "RetroTypes.hpp"
|
||||
#include "IObj.hpp"
|
||||
#include "CToken.hpp"
|
||||
#include "IOStreams.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
class CElectricDescription;
|
||||
class CSimplePool;
|
||||
class CParticleElectricDataFactory
|
||||
{
|
||||
public:
|
||||
static CElectricDescription* GetGeneratorDesc(CInputStream& in, CSimplePool* resPool);
|
||||
static CElectricDescription* CreateElectricDescription(CInputStream& in, CSimplePool* resPool);
|
||||
|
||||
static bool CreateELSM(CElectricDescription* desc, CInputStream& in, CSimplePool* resPool) { return false; }
|
||||
static bool LoadELSMTokens(CElectricDescription* desc);
|
||||
};
|
||||
|
||||
std::unique_ptr<IObj> FParticleElectricDataFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& vparms);
|
||||
}
|
||||
|
||||
#endif // __RETRO_CPARTICLEELECTRICDATAFACTORY_HPP__
|
||||
Reference in New Issue
Block a user