source:
GTP/trunk/App/Games/Jungle_Rumble/src/UserNotify.h
@
1378
Revision 1378, 293 bytes checked in by giegl, 18 years ago (diff) |
---|
Line | |
---|---|
1 | #pragma once |
2 | #include "NxPhysics.h" |
3 | |
4 | class Scene; |
5 | |
6 | class UserNotify : |
7 | public NxUserNotify |
8 | { |
9 | public: |
10 | UserNotify(void); |
11 | ~UserNotify(void); |
12 | |
13 | void setScene(Scene* _scene); |
14 | virtual bool onJointBreak(NxReal breakingForce, NxJoint & brokenJoint); |
15 | |
16 | protected: |
17 | Scene* scene; |
18 | }; |
Note: See TracBrowser
for help on using the repository browser.