mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
18 lines
324 B
C++
18 lines
324 B
C++
#include "FortCameraBase.h"
|
|
|
|
|
|
|
|
|
|
|
|
void AFortCameraBase::Exhibit(AFortExhibitActor* TargetActor) {
|
|
}
|
|
|
|
AFortCameraBase::AFortCameraBase() {
|
|
this->MinDistanceToDrag = 0.00f;
|
|
this->DefaultFieldOfView = 90.00f;
|
|
this->ExhibitActor = NULL;
|
|
this->bExhibitActorChanged = false;
|
|
this->CheckForDragBegin = false;
|
|
}
|
|
|