mirror of
https://github.com/thug1src/thug.git
synced 2025-01-22 05:43:47 +00:00
78 lines
3.0 KiB
C++
78 lines
3.0 KiB
C++
/*****************************************************************************
|
|
** **
|
|
** Neversoft Entertainment. **
|
|
** **
|
|
** Copyright (C) 2000 - All Rights Reserved **
|
|
** **
|
|
******************************************************************************
|
|
** **
|
|
** Project: Skate5 **
|
|
** **
|
|
** Module: Gfx **
|
|
** **
|
|
** File name: p_nxnewparticlemgr.h **
|
|
** **
|
|
** Created by: 3/24/03 - SPG **
|
|
** **
|
|
** Description: Ngc-specific new parametric particle system manager **
|
|
** **
|
|
*****************************************************************************/
|
|
|
|
#ifndef __GFX_NGC_P_NXNEWPARTICLEMGR_H__
|
|
#define __GFX_NGC_P_NXNEWPARTICLEMGR_H__
|
|
|
|
/*****************************************************************************
|
|
** Includes **
|
|
*****************************************************************************/
|
|
|
|
#include <gfx/nxnewparticlemgr.h>
|
|
|
|
/*****************************************************************************
|
|
** Defines **
|
|
*****************************************************************************/
|
|
|
|
|
|
namespace Nx
|
|
{
|
|
|
|
/*****************************************************************************
|
|
** Class Definitions **
|
|
*****************************************************************************/
|
|
|
|
class CNgcNewParticleManager : public CNewParticleManager
|
|
{
|
|
protected:
|
|
virtual CNewParticle* plat_create_particle( void );
|
|
};
|
|
|
|
/*****************************************************************************
|
|
** Private Declarations **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Private Prototypes **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Public Declarations **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Public Prototypes **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Inline Functions **
|
|
*****************************************************************************/
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
|
|
} // namespace Nx
|
|
|
|
#endif // __GFX_NGC_P_NXNEWPARTICLEMGR_H__
|
|
|
|
|