mirror of
https://github.com/thug1src/thug.git
synced 2025-01-22 05:43:47 +00:00
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
|
//****************************************************************************
|
||
|
//* MODULE: Gfx
|
||
|
//* FILENAME: p_NxAnimCache.cpp
|
||
|
//* OWNER: Gary Jesdanun
|
||
|
//* CREATION DATE: 5/06/2002
|
||
|
//****************************************************************************
|
||
|
|
||
|
#ifndef __GFX_P_NXANIMCACHE_H__
|
||
|
#define __GFX_P_NXANIMCACHE_H__
|
||
|
|
||
|
#include <gfx/nxanimcache.h>
|
||
|
|
||
|
namespace Nx
|
||
|
{
|
||
|
/******************************************************************/
|
||
|
/* */
|
||
|
/* */
|
||
|
/******************************************************************/
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Here's a machine specific implementation of the CGeom
|
||
|
|
||
|
class CPs2AnimCache : public CAnimCache
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
CPs2AnimCache( int lookupTableSize );
|
||
|
virtual ~CPs2AnimCache();
|
||
|
|
||
|
private: // It's all private, as it is machine specific
|
||
|
};
|
||
|
|
||
|
} // Nx
|
||
|
|
||
|
#endif
|