20 lines
388 B
C++
20 lines
388 B
C++
/**
|
|
* @file RDI_FileHandlers.h
|
|
* @date 04/02/2023
|
|
* @author JackCarterSmith
|
|
* @copyright GPL-v3.0
|
|
* @brief FileHandlers global interface header.
|
|
*
|
|
*/
|
|
|
|
#ifndef RDI_FILEHANDLERS_HPP_
|
|
#define RDI_FILEHANDLERS_HPP_
|
|
|
|
#include <FileHandler/Generic.hpp>
|
|
#include <FileHandler/LVL.hpp>
|
|
#include <FileHandler/HMT.hpp>
|
|
#include <FileHandler/HOB.hpp>
|
|
|
|
|
|
#endif /* RDI_FILEHANDLERS_HPP_ */
|