Files
FNGameProj/Source/EasyAntiCheatCommon/Private/EasyAntiCheatNetComponent.cpp
2024-01-21 00:41:14 +01:00

15 lines
403 B
C++

#include "EasyAntiCheatNetComponent.h"
void UEasyAntiCheatNetComponent::ServerMessage_Implementation(const TArray<uint8>& MESSAGE) {
}
bool UEasyAntiCheatNetComponent::ServerMessage_Validate(const TArray<uint8>& MESSAGE) {
return true;
}
void UEasyAntiCheatNetComponent::ClientMessage_Implementation(const TArray<uint8>& MESSAGE) {
}
UEasyAntiCheatNetComponent::UEasyAntiCheatNetComponent() {
}