1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-20 17:31:44 +02:00
openrw/rwengine/include/loaders/LoaderCutsceneDAT.hpp

14 lines
244 B
C++

#pragma once
#ifndef _LOADERCUTSCENEDAT_HPP_
#define _LOADERCUTSCENEDAT_HPP_
#include <platform/FileHandle.hpp>
#include <data/CutsceneData.hpp>
class LoaderCutsceneDAT
{
public:
void load(CutsceneTracks& tracks, FileHandle file);
};
#endif