mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-08 11:52:57 +01:00
14 lines
244 B
C++
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
|