mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 14:44:36 +00:00
uninitialized variables-sim
This commit is contained in:
parent
a1a6143e01
commit
87603029db
5 changed files with 8 additions and 6 deletions
|
|
@ -273,7 +273,7 @@ public:
|
|||
/// @{
|
||||
|
||||
///
|
||||
NetEvent() { mGuaranteeType = GuaranteedOrdered; }
|
||||
NetEvent() { mSourceId = -1; mGuaranteeType = GuaranteedOrdered; }
|
||||
virtual ~NetEvent();
|
||||
|
||||
virtual void write(NetConnection *ps, BitStream *bstream) = 0;
|
||||
|
|
@ -863,7 +863,7 @@ public:
|
|||
void setScopeObject(NetObject *object);
|
||||
|
||||
/// Get the object around which we are currently scoping network traffic.
|
||||
NetObject *getScopeObject();
|
||||
NetObject* getScopeObject() {};
|
||||
|
||||
/// Add an object to scope.
|
||||
void objectInScope(NetObject *object);
|
||||
|
|
@ -1047,7 +1047,7 @@ public:
|
|||
|
||||
bool startDemoRecord(const char *fileName);
|
||||
bool replayDemoRecord(const char *fileName);
|
||||
void startDemoRead();
|
||||
void startDemoRead() {};
|
||||
void stopRecording();
|
||||
void stopDemoPlayback();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue