mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
21 lines
484 B
C++
21 lines
484 B
C++
#include "FortMediaPlayerCtrl.h"
|
|
|
|
void UFortMediaPlayerCtrl::SetPlayerStartTime(float InRequestSentTime) {
|
|
}
|
|
|
|
bool UFortMediaPlayerCtrl::Play() {
|
|
return false;
|
|
}
|
|
|
|
bool UFortMediaPlayerCtrl::OpenSourceWithOptions(UMediaSource* InMediaSource, const FMediaPlayerOptions& InOptions) {
|
|
return false;
|
|
}
|
|
|
|
UFortMediaPlayerCtrl::UFortMediaPlayerCtrl() {
|
|
MediaPlayer = NULL;
|
|
MediaSource = NULL;
|
|
InitialBufferDurationInSeconds = 1;
|
|
SegmentBufferDurationInSeconds = 1;
|
|
}
|
|
|