mirror of
https://github.com/thug1src/thug.git
synced 2025-01-21 21:33:46 +00:00
27 lines
632 B
C++
27 lines
632 B
C++
//****************************************************************************
|
|
//* MODULE: Gfx
|
|
//* FILENAME: NxAnimCache.cpp
|
|
//* OWNER: Gary Jesdanun
|
|
//* CREATION DATE: 5/06/2002
|
|
//****************************************************************************
|
|
|
|
#ifndef __GFX_NXANIMCACHE_H__
|
|
#define __GFX_NXANIMCACHE_H__
|
|
|
|
#include <core/defines.h>
|
|
#include <core/support.h>
|
|
|
|
namespace Gfx
|
|
{
|
|
class CBonedAnimFrameData;
|
|
};
|
|
|
|
namespace Nx
|
|
{
|
|
|
|
Gfx::CBonedAnimFrameData* GetCachedAnim( uint32 animChecksum, bool assertOnFail = true );
|
|
|
|
}
|
|
|
|
#endif // __GFX_NXANIMCACHE_H__
|