osb/source/core/StarNetElement.cpp
2024-09-11 15:19:17 +10:00

23 lines
377 B
C++

#include "StarNetElement.hpp"
namespace Star {
uint64_t NetElementVersion::current() const {
return m_version;
}
uint64_t NetElementVersion::increment() {
return ++m_version;
}
void NetElement::enableNetInterpolation(float) {}
void NetElement::disableNetInterpolation() {}
void NetElement::tickNetInterpolation(float) {}
void NetElement::blankNetDelta(float) {}
}