mirror of https://github.com/AxioDL/metaforce.git
28 lines
501 B
C++
28 lines
501 B
C++
|
#ifndef _DNAMP1_RIPPER_HPP_
|
||
|
#define _DNAMP1_RIPPER_HPP_
|
||
|
|
||
|
#include "../../DNACommon/DNACommon.hpp"
|
||
|
#include "IScriptObject.hpp"
|
||
|
#include "Parameters.hpp"
|
||
|
|
||
|
namespace Retro
|
||
|
{
|
||
|
namespace DNAMP1
|
||
|
{
|
||
|
struct Ripper : IScriptObject
|
||
|
{
|
||
|
DECL_YAML
|
||
|
String<-1> name;
|
||
|
Value<atUint32> unknown1;
|
||
|
Value<atVec3f> location;
|
||
|
Value<atVec3f> orientation;
|
||
|
Value<atVec3f> scale;
|
||
|
PatternedInfo patternedInfo;
|
||
|
ActorParameters actorParameters;
|
||
|
GrappleParameters grappleParameters;
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|