mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-01-09 22:37:07 +00:00
6 lines
172 B
C++
6 lines
172 B
C++
|
#include "CollectibleComponent.h"
|
||
|
|
||
|
void CollectibleComponent::Serialize(RakNet::BitStream* outBitStream, bool isConstruction) {
|
||
|
outBitStream->Write(GetCollectibleId());
|
||
|
}
|