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

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

GTPD - Jungle Rumble - integrate into GTP SVN structure

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