Files
FlaxEngine/Source/Engine/Video/Video.h
2024-05-08 12:35:18 +02:00

16 lines
349 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 class TaskGraphSystem* System;
static bool CreatePlayerBackend(const VideoBackendPlayerInfo& info, VideoBackendPlayer& player);
};