mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 11:15:04 +00:00
22 lines
No EOL
393 B
C++
22 lines
No EOL
393 B
C++
/**
|
|
* @file ResMaterialAnim.h
|
|
* @brief Resource file for material animations.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace nn
|
|
{
|
|
namespace g3d
|
|
{
|
|
typedef void* TextureRef;
|
|
|
|
class ResMaterialAnim
|
|
{
|
|
public:
|
|
void ReleaseTexture();
|
|
s32 BindTexture(nn::g3d::TextureRef (*)(char const*, void *), void *);
|
|
void Reset();
|
|
};
|
|
};
|
|
}; |