2023-08-09 23:45:58 +03:00
|
|
|
#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();
|
|
|
|
|
|
2023-08-11 22:35:54 +03:00
|
|
|
SLdrEditorProperties editorProperties;
|
2023-08-09 23:45:58 +03:00
|
|
|
CVector3f offset;
|
2023-08-11 22:35:54 +03:00
|
|
|
bool offsetIsLocalSpace;
|
2023-08-09 23:45:58 +03:00
|
|
|
CAssetId rules;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void LoadTypedefSLdrPickupGenerator(SLdrPickupGenerator&, CInputStream&);
|
|
|
|
|
|
|
|
|
|
#endif // _SLDRPICKUPGENERATOR
|