# -*- mode: snippet -*-
# name: Implement OnComponentBeginOverlap event handler
# key: uioncomponentbeginoverlap
# condition: (ue--yas-can-expand-p)
# --
void ${2:A}`(file-name-base)`::HandleBegin${1:Component}Overlap(
	UPrimitiveComponent *OverlappedComponent,
	AActor              *OtherActor,
	UPrimitiveComponent *OtherComp,
	int32                OtherBodyIndex,
	bool                 bFromSweep,
	const FHitResult    &SweepResult)
{
	$3
}
