blob: 2e41bbd3c7157f2bb5146a1b2dbbc401266f2dd3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "JSystem/JSystem.h" // IWYU pragma: keep
#include "JSystem/JParticle/JPATexture.h"
JPATexture::JPATexture(u8 const* pData) {
mpData = (const JPATextureData*)pData;
mTexture.storeTIMG(&mpData->mResTIMG, (u8)0);
}
JPATexture::~JPATexture() {}
|