mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
22 lines
307 B
C
22 lines
307 B
C
#ifndef JPAKEYBLOCK_H
|
|
#define JPAKEYBLOCK_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
/**
|
|
* @ingroup jsystem-jparticle
|
|
*
|
|
*/
|
|
struct JPAKeyBlock {
|
|
JPAKeyBlock(u8 const*);
|
|
f32 calc(f32);
|
|
|
|
u8 getID() { return mDataStart[8]; }
|
|
|
|
const u8* mDataStart;
|
|
const f32* field_0x4;
|
|
};
|
|
|
|
|
|
#endif /* JPAKEYBLOCK_H */
|