Game loop finished

This commit is contained in:
2023-07-31 22:57:35 +02:00
parent 6b23098dd3
commit 774101a96c
26 changed files with 63 additions and 18 deletions

View File

@@ -51,4 +51,13 @@ TArray<ABuildingBlock*> ABuildingBlock::GetSameVariantNeighbours() {
}
return Results;
}
void ABuildingBlock::DestroyBlock_Implementation() {
IsBeingDestroyed = true;
OnBlockDestroyed.ExecuteIfBound();
}
void ABuildingBlock::DestroyWithDelay_Implementation() {
IsBeingDestroyed = true;
}