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