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
Daniel Evans abf43f07c8 New File handling implementation
- move FileHandle into a separate header
- Implement FileIndex, a system to normalize filenames and sources
2015-04-03 03:04:50 +01:00

14 lines
240 B
C++

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