summaryrefslogtreecommitdiff
path: root/include/nw4r/ut/ut_ResFont.h
blob: 3d2b472b9de7562baf68c20f867d141e6d7a8729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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