27 lines
511 B
C++
27 lines
511 B
C++
/**
|
|
* @file LegacyExplorer.h
|
|
* @date 22/09/2022
|
|
* @author JackCarterSmith
|
|
* @copyright GPL-v3.0
|
|
* @brief Main game resources interface.
|
|
*
|
|
* Complete class would take legacy RDat files tree and extract levels, objects,
|
|
* textures, animations, etc. adapted datas for OpenGL/Direct3D application.
|
|
*
|
|
*/
|
|
|
|
#ifndef LEGACYEXPLORER_H_
|
|
#define LEGACYEXPLORER_H_
|
|
|
|
namespace RDI {
|
|
|
|
class LegacyExplorer final {
|
|
public:
|
|
LegacyExplorer( RDat& pRDat );
|
|
~LegacyExplorer();
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* LEGACYEXPLORER_H_ */
|