Files
tp/include/JSystem/JParticle/JPAKeyBlock.h
T

22 lines
307 B
C
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef JPAKEYBLOCK_H
#define JPAKEYBLOCK_H
#include "dolphin/types.h"
2024-04-12 00:10:30 -06:00
/**
* @ingroup jsystem-jparticle
*
*/
2023-07-24 01:30:24 +03:00
struct JPAKeyBlock {
2025-11-30 14:23:42 -08:00
JPAKeyBlock(u8 const*);
f32 calc(f32);
2024-11-03 13:39:41 -05:00
u8 getID() { return mDataStart[8]; }
2023-07-24 01:30:24 +03:00
const u8* mDataStart;
const f32* field_0x4;
};
2021-03-28 22:49:05 +02:00
#endif /* JPAKEYBLOCK_H */