mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
19 lines
425 B
C++
19 lines
425 B
C++
#include "FortAthenaTutorial_Shoot.h"
|
|
|
|
void AFortAthenaTutorial_Shoot::OnTargetDestroyed(int32 TargetIndex) {
|
|
}
|
|
|
|
|
|
AFortAthenaTutorial_Shoot::AFortAthenaTutorial_Shoot() {
|
|
ShootCameraPoint = NULL;
|
|
TargetCounterScreen = NULL;
|
|
AmmoCountToTriggerReload = 0;
|
|
ShootMarkerAppearDelay = 1;
|
|
CameraInSpeed = 1;
|
|
CameraInDuration = 1;
|
|
CameraWaitTime = 1;
|
|
CameraOutSpeed = 1;
|
|
CameraOutDuration = 1;
|
|
}
|
|
|