source: GTP/trunk/App/Games/Jungle_Rumble/src/physic/physics/include/NxInterfaceStats.h @ 1378

Revision 1378, 734 bytes checked in by giegl, 18 years ago (diff)

GTPD - Jungle Rumble - integrate into GTP SVN structure

Line 
1#ifndef NX_INTERFACE_STATS_H
2
3#define NX_INTERFACE_STATS_H
4
5#include "NxInterface.h"
6
7#define NX_INTERFACE_STATS_VERSION 100
8
9class NxInterfaceStats : public NxInterface
10{
11public:
12  virtual int             getVersionNumber(void) const { return NX_INTERFACE_STATS_VERSION; };
13  virtual NxInterfaceType getInterfaceType(void) const { return NX_INTERFACE_STATS; };
14        virtual bool              getHeapSize(int &used,int &unused) = 0;
15
16};
17
18#endif
19
20
21//AGCOPYRIGHTBEGIN
22///////////////////////////////////////////////////////////////////////////
23// Copyright © 2005 AGEIA Technologies.
24// All rights reserved. www.ageia.com
25///////////////////////////////////////////////////////////////////////////
26//AGCOPYRIGHTEND
27
Note: See TracBrowser for help on using the repository browser.