HOB file handler prototype Mesh building should be moved to RSPModel lib Tree rendering unicode chars fix Updated version detection HOB file handler Debug HOB handler Pointer probably deallocated, need to check it Fix HOB loader and disposer Using HOB instance instead of static methods Review DLL support for MSVC build Vertices values calculation fix Added export obj method to debug tool Missed levels name separation Cleaned model processing Multithreading branch reported to later
27 lines
343 B
C++
27 lines
343 B
C++
/**
|
|
* @file HMT.h
|
|
* @date 15/09/2022
|
|
* @author JackCarterSmith
|
|
* @copyright GPL-v3.0
|
|
* @brief HMT file object class.
|
|
*
|
|
*/
|
|
|
|
#include <FileHandler/Generic.h>
|
|
|
|
|
|
#ifndef HMT_H_
|
|
#define HMT_H_
|
|
|
|
namespace RDI {
|
|
|
|
class HMT : public GenericFile {
|
|
public:
|
|
HMT( DatFile::DatFileEntryFile* hDat );
|
|
virtual ~HMT();
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* HMT_H_ */
|