NcEngine
|
Type safe wrapper representing a timepoint in the physics simulation. More...
#include <PhysicsTick.h>
Public Types | |
using | tick_t = uint32_t |
Public Member Functions | |
constexpr | PhysicsTick (tick_t tick) noexcept |
constexpr auto | IsNull () const noexcept -> bool |
constexpr auto | Value () const noexcept -> tick_t |
constexpr | operator tick_t () const noexcept |
constexpr auto | operator++ () noexcept -> PhysicsTick & |
constexpr auto | operator++ (int) noexcept -> PhysicsTick |
constexpr auto | operator-- () noexcept -> PhysicsTick & |
constexpr auto | operator-- (int) noexcept -> PhysicsTick |
constexpr auto | operator+ (tick_t rhs) const noexcept -> PhysicsTick |
constexpr auto | operator- (tick_t rhs) const noexcept -> PhysicsTick |
constexpr auto | operator+= (tick_t rhs) noexcept -> PhysicsTick & |
constexpr auto | operator-= (tick_t rhs) noexcept -> PhysicsTick & |
constexpr auto | operator<=> (const PhysicsTick &) const noexcept=default |
Static Public Member Functions | |
static constexpr auto | Null () noexcept -> PhysicsTick |
Static Public Attributes | |
static constexpr auto | NullTick = std::numeric_limits<tick_t>::max() |
Type safe wrapper representing a timepoint in the physics simulation.