26 lines
557 B
C++
26 lines
557 B
C++
// Copyright 2025 https://yuewu.dev/en All Rights Reserved.
|
|
|
|
|
|
#include "Bullet/GCS_BulletContainer.h"
|
|
|
|
void FGCS_BulletContainer::PreReplicatedRemove(const TArrayView<int32> RemovedIndices, int32 FinalSize)
|
|
{
|
|
}
|
|
|
|
void FGCS_BulletContainer::PostReplicatedAdd(const TArrayView<int32> AddedIndices, int32 FinalSize)
|
|
{
|
|
}
|
|
|
|
void FGCS_BulletContainer::PostReplicatedChange(const TArrayView<int32> ChangedIndices, int32 FinalSize)
|
|
{
|
|
}
|
|
|
|
int32 FGCS_BulletContainer::IndexOfById(const FGuid& Id) const
|
|
{
|
|
if (!Id.IsValid())
|
|
{
|
|
return INDEX_NONE;
|
|
}
|
|
return -1;
|
|
}
|