mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04:00
Hoikas' subworld fixes including PhysX support
1) Allow plSubWorldMsg to be sent over the network https://github.com/H-uru/Plasma/pull/107 2) Cleanup VolumeSensorConditionalObject https://github.com/H-uru/Plasma/pull/537 3) Add two new compiler feature tests - HeadSpin.h changes ONLY, as prerequisite for VolumeSensorConditionalObject45be91c0e3
4) Fix a crash and a silly identified by Coverity - changes for VolumeSensorConditionalObject ONLYa702cb9d3f
5) PXSubworld (Havok/CC subworld physics support ported to PhysX/MOULa) https://github.com/H-uru/Plasma/pull/555
This commit is contained in:
@ -57,6 +57,8 @@ class hsResMgr;
|
||||
class plServerReplyMsg : public plMessage
|
||||
{
|
||||
int fType;
|
||||
bool fWasDelayed;
|
||||
|
||||
public:
|
||||
|
||||
enum
|
||||
@ -67,10 +69,13 @@ public:
|
||||
};
|
||||
|
||||
void SetType(int t) { fType = t; }
|
||||
int GetType() { return fType; }
|
||||
int GetType() const { return fType; }
|
||||
|
||||
plServerReplyMsg() : fType(kUnInit) { }
|
||||
plServerReplyMsg(const plKey &s, const plKey &r, const double* t) : plMessage(s,r,t), fType(kUnInit) { }
|
||||
void SetWasDelayed(bool v) { fWasDelayed = v; }
|
||||
bool GetWasDelayed() const { return fWasDelayed; }
|
||||
|
||||
plServerReplyMsg() : fType(kUnInit), fWasDelayed(false) { }
|
||||
plServerReplyMsg(const plKey &s, const plKey &r, const double* t) : plMessage(s,r,t), fType(kUnInit), fWasDelayed(false) { }
|
||||
|
||||
CLASSNAME_REGISTER( plServerReplyMsg );
|
||||
GETINTERFACE_ANY( plServerReplyMsg, plMessage );
|
||||
|
Reference in New Issue
Block a user