2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 22:27:43 +00:00

More script loaders

This commit is contained in:
Jack Andersen
2016-04-20 11:44:18 -10:00
parent fd3066e304
commit 0f6d1645ba
19 changed files with 388 additions and 25 deletions

View File

@@ -0,0 +1,21 @@
#ifndef __URDE_CSCRIPEFFECT_HPP__
#define __URDE_CSCRIPEFFECT_HPP__
#include "CActor.hpp"
namespace urde
{
class CScriptEffect : public CActor
{
public:
CScriptEffect(TUniqueId, const std::string& name, const CEntityInfo& info,
const zeus::CTransform& xf, const zeus::CVector3f& scale,
ResId partId, ResId elscId, bool, bool, bool, bool active,
bool, float, float, float, float, bool, float, float, float,
bool, bool, bool, const CLightParameters& lParms, bool);
};
}
#endif // __URDE_CSCRIPEFFECT_HPP__