mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
24 lines
416 B
C++
24 lines
416 B
C++
#ifndef NW4R_UT_RES_FONT_H
|
|
#define NW4R_UT_RES_FONT_H
|
|
#include "nw4r/types_nw4r.h"
|
|
#include "nw4r/ut/ut_ResFontBase.h"
|
|
|
|
namespace nw4r {
|
|
namespace ut {
|
|
|
|
class ResFont : public detail::ResFontBase {
|
|
public:
|
|
static FontInformation *Rebuild(BinaryFileHeader *header);
|
|
|
|
ResFont();
|
|
~ResFont();
|
|
|
|
bool SetResource(void *buffer);
|
|
void *RemoveResource();
|
|
};
|
|
|
|
} // namespace ut
|
|
} // namespace nw4r
|
|
|
|
#endif
|