mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
22 lines
528 B
C++
22 lines
528 B
C++
#ifndef _SLDRFISHCLOUDMODIFIER
|
|
#define _SLDRFISHCLOUDMODIFIER
|
|
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrFishCloudModifier {
|
|
SLdrFishCloudModifier();
|
|
~SLdrFishCloudModifier();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
bool active;
|
|
bool unknown;
|
|
bool rotate;
|
|
float influenceDistance;
|
|
float influencePriority;
|
|
};
|
|
|
|
void LoadTypedefSLdrFishCloudModifier(SLdrFishCloudModifier&, CInputStream&);
|
|
|
|
#endif // _SLDRFISHCLOUDMODIFIER
|