source: GTP/trunk/App/Games/Jungle_Rumble/src/UserTriggerReport.h @ 1378

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
4class Scene;
5
6class UserTriggerReport :
7        public NxUserTriggerReport
8{
9public:
10        UserTriggerReport(void);
11        ~UserTriggerReport(void);
12
13        void setScene(Scene* _scene);
14        virtual void onTrigger(NxShape& triggerShape, NxShape& otherShape, NxTriggerFlag status);
15
16protected:
17        Scene* scene;
18};
Note: See TracBrowser for help on using the repository browser.