Files
FlaxEngine/Source/Engine/Video/Video.h
2024-05-01 01:25:16 +02:00

15 lines
307 B
C++

// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
#pragma once
#include "Types.h"
/// <summary>
/// The video service used for video media playback.
/// </summary>
class Video
{
public:
static bool CreatePlayerBackend(const VideoBackendPlayerInfo& info, VideoBackendPlayer& player);
};