Revision 1378,
339 bytes
checked in by giegl, 18 years ago
(diff) |
GTPD - Jungle Rumble - integrate into GTP SVN structure
|
Line | |
---|
1 | #pragma once
|
---|
2 | #include "NxPhysics.h"
|
---|
3 |
|
---|
4 | class Scene;
|
---|
5 |
|
---|
6 | class UserTriggerReport :
|
---|
7 | public NxUserTriggerReport
|
---|
8 | {
|
---|
9 | public:
|
---|
10 | UserTriggerReport(void);
|
---|
11 | ~UserTriggerReport(void);
|
---|
12 |
|
---|
13 | void setScene(Scene* _scene);
|
---|
14 | virtual void onTrigger(NxShape& triggerShape, NxShape& otherShape, NxTriggerFlag status);
|
---|
15 |
|
---|
16 | protected:
|
---|
17 | Scene* scene;
|
---|
18 | };
|
---|
Note: See
TracBrowser
for help on using the repository browser.