blob: 914badda605ca88c0dfad155b91f1ac948427a06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#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) {}
}
|