Remove uneeded include (#674)

This commit is contained in:
Aaron Kimbrell 2022-07-24 16:17:01 -05:00 committed by GitHub
parent b57cacc676
commit 9ed4a4f47f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -79,7 +79,6 @@ CharacterComponent::~CharacterComponent() {
}
void CharacterComponent::Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags) {
outBitStream->Write0();
if (bIsInitialUpdate) {
outBitStream->Write0();

View File

@ -1,7 +1,6 @@
#pragma once
#include "Entity.h"
#include "GameMessages.h"
#include "Component.h"
/**