osb/source/core/StarNetElement.cpp

23 lines
366 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#include "StarNetElement.hpp"
namespace Star {
uint64_t NetElementVersion::current() const {
return m_version;
}
void NetElementVersion::increment() {
++m_version;
}
void NetElement::enableNetInterpolation(float) {}
void NetElement::disableNetInterpolation() {}
void NetElement::tickNetInterpolation(float) {}
void NetElement::blankNetDelta(float) {}
}