16 lines
233 B
C++
Executable file
16 lines
233 B
C++
Executable file
#include "CaveObject.h"
|
|
|
|
void ACaveObject::TriggerNetworkUpdate() {
|
|
}
|
|
|
|
void ACaveObject::ResumeNetworkUpdates() {
|
|
}
|
|
|
|
|
|
void ACaveObject::PauseNetworkUpdates() {
|
|
}
|
|
|
|
ACaveObject::ACaveObject() {
|
|
this->CanCharacterStandOn = true;
|
|
}
|
|
|