Starbound/source/core/StarNetElement.cpp
2025-03-21 22:23:30 +11:00

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