metaforce/Runtime/Particle/CProjectileWeaponDataFactor...

26 lines
837 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
#include <memory>
#include "Runtime/CFactoryMgr.hpp"
#include "Runtime/CToken.hpp"
#include "Runtime/Streams/IOStreams.hpp"
#include "Runtime/IObj.hpp"
#include "Runtime/RetroTypes.hpp"
2021-04-10 01:42:06 -07:00
namespace metaforce {
class CSimplePool;
class CWeaponDescription;
2018-12-07 21:30:43 -08:00
class CProjectileWeaponDataFactory {
static std::unique_ptr<CWeaponDescription> CreateGeneratorDescription(CInputStream& in, CSimplePool* resPool);
2018-12-07 21:30:43 -08:00
static bool CreateWPSM(CWeaponDescription* desc, CInputStream& in, CSimplePool* resPool);
2017-02-13 13:29:00 -08:00
public:
static std::unique_ptr<CWeaponDescription> GetGeneratorDesc(CInputStream& in, CSimplePool* resPool);
};
2017-02-13 13:29:00 -08:00
CFactoryFnReturn FProjectileWeaponDataFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& vparms,
CObjectReference*);
2021-04-10 01:42:06 -07:00
} // namespace metaforce