mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
22 lines
541 B
C++
22 lines
541 B
C++
#ifndef _SLDRPICKUPGENERATOR
|
|
#define _SLDRPICKUPGENERATOR
|
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
|
#include "Kyoto/SObjectTag.hpp"
|
|
#include "Kyoto/Streams/CInputStream.hpp"
|
|
#include "MetroidPrime/ScriptLoader/SLdrEditorProperties.hpp"
|
|
|
|
struct SLdrPickupGenerator {
|
|
SLdrPickupGenerator();
|
|
~SLdrPickupGenerator();
|
|
|
|
SLdrEditorProperties editorProperties;
|
|
CVector3f offset;
|
|
bool offsetIsLocalSpace;
|
|
CAssetId rules;
|
|
};
|
|
|
|
void LoadTypedefSLdrPickupGenerator(SLdrPickupGenerator&, CInputStream&);
|
|
|
|
#endif // _SLDRPICKUPGENERATOR
|