osb/source/core/StarNetElement.cpp
2023-06-20 14:33:09 +10:00

23 lines
366 B
C++

#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) {}
}