mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
15 lines
403 B
C++
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() {
|
|
}
|
|
|