source: GTP/trunk/App/Games/Jungle_Rumble/src/UserNotify.cpp @ 1378

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

GTPD - Jungle Rumble - integrate into GTP SVN structure

Line 
1#include "dxstdafx.h"
2#include ".\usernotify.h"
3#include "GameManager.h"
4#include "Scene.h"
5
6UserNotify::UserNotify(void)
7{
8}
9
10UserNotify::~UserNotify(void)
11{
12}
13
14void UserNotify::setScene(Scene* _scene)
15{
16        this->scene = _scene;
17}
18
19bool UserNotify::onJointBreak(NxReal breakingForce, NxJoint & brokenJoint)
20{
21        this->scene->manager->printToConsole("Joint break!");
22        return true; //delete the joint
23}
24
Note: See TracBrowser for help on using the repository browser.