mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
27 lines
494 B
C++
27 lines
494 B
C++
|
#ifndef GAME_MWWORLD_DOINGPHYSICS_H
|
||
|
#define GAME_MWWORLD_DOINGPHYSICS_H
|
||
|
|
||
|
namespace MWWorld
|
||
|
{
|
||
|
///< Scope guard for blocking physics updates during physics simulation.
|
||
|
class DoingPhysics
|
||
|
{
|
||
|
static int sCounter;
|
||
|
|
||
|
private:
|
||
|
|
||
|
DoingPhysics (const DoingPhysics&);
|
||
|
DoingPhysics& operator= (const DoingPhysics&);
|
||
|
|
||
|
public:
|
||
|
|
||
|
DoingPhysics();
|
||
|
|
||
|
~DoingPhysics();
|
||
|
|
||
|
static bool isDoingPhysics();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|