JackCarterSmith 2da49b53ae
Reforge library structure - 3rd pass
Updated CMakeFile with MSVC options

Review Erso lib interface

Better tree display in RDIDebug tool


Change lib interface functions naming


Separate namespace for date file entries
2023-01-12 20:25:10 +01:00

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_ */