diff options
| author | Pheenoh <pheenoh@gmail.com> | 2021-03-27 15:41:26 -0400 |
|---|---|---|
| committer | Pheenoh <pheenoh@gmail.com> | 2021-03-27 15:41:26 -0400 |
| commit | 050fff7ec328c4625f2653cba9790fc02365902b (patch) | |
| tree | 1f4c3d1d8907b99e3224dd0aae8ffe84e3421a57 /include/JSystem/J2DGraph | |
| parent | 717afc142975623519a342b9eb3449dbdafe870d (diff) | |
fopMsgM_GetAppend OK
Diffstat (limited to 'include/JSystem/J2DGraph')
| -rw-r--r-- | include/JSystem/J2DGraph/J2DPane.h | 1 | ||||
| -rw-r--r-- | include/JSystem/J2DGraph/J2DPicture/J2DPicture.h | 11 |
2 files changed, 10 insertions, 2 deletions
diff --git a/include/JSystem/J2DGraph/J2DPane.h b/include/JSystem/J2DGraph/J2DPane.h index e55cd14eb8..bfcc215000 100644 --- a/include/JSystem/J2DGraph/J2DPane.h +++ b/include/JSystem/J2DGraph/J2DPane.h @@ -164,6 +164,7 @@ public: void* getPointer(JSURandomInputStream* stream, u32 size, JKRArchive* archive); void animationTransform(); void updateTransform(const J2DAnmTransform* transform); + void setAlpha(u8 param_1); private: /* 0x004 */ u16 _4; diff --git a/include/JSystem/J2DGraph/J2DPicture/J2DPicture.h b/include/JSystem/J2DGraph/J2DPicture/J2DPicture.h index ad5188f3f9..5e3adafd11 100644 --- a/include/JSystem/J2DGraph/J2DPicture/J2DPicture.h +++ b/include/JSystem/J2DGraph/J2DPicture/J2DPicture.h @@ -1,8 +1,15 @@ #ifndef J2DPICTURE_H_ #define J2DPICTURE_H_ -#include "global.h" +#include "dolphin/types.h" -class J2DPicture {}; +class J2DPicture { +public: + + // member functions + void setBlendRatio(f32, f32); + void append(const char*, f32); + void insert(const char*, u8, f32); +}; #endif
\ No newline at end of file |
