mirror of
https://github.com/thug1src/thug.git
synced 2025-01-21 21:33:46 +00:00
31 lines
663 B
C++
31 lines
663 B
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// p_NxFont.h
|
|
|
|
#ifndef __GFX_P_NX_IMPOSTER_H__
|
|
#define __GFX_P_NX_IMPOSTER_H__
|
|
|
|
#include "gfx/NxImposter.h"
|
|
|
|
namespace Nx
|
|
{
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////
|
|
// Private classes
|
|
//
|
|
// Here's a machine specific implementation of the CImposterGroup
|
|
class CPs2ImposterGroup : public CImposterGroup
|
|
{
|
|
public:
|
|
CPs2ImposterGroup();
|
|
virtual ~CPs2ImposterGroup();
|
|
|
|
|
|
private: // It's all private, as it is machine specific
|
|
|
|
// Machine specific members
|
|
};
|
|
|
|
} // Namespace Nx
|
|
|
|
#endif
|