summaryrefslogtreecommitdiff
path: root/include/d/lyt/d_lyt_base.h
blob: fb4ffd8c303e3d7b58ce299a4077d007e4015097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef D_LYT_BASE_H
#define D_LYT_BASE_H

#include "common.h"
#include "d/d_base.h"
#include "m/m_allocator.h"

class dLytBase_c : public dBase_c {
public:
    dLytBase_c();
    virtual ~dLytBase_c();

    /* 0x4C */ virtual bool build();

protected:
    bool allocateLytWork1Heap(const char *name, bool exp);
    void removeLyt();

private:
    /* 0x68 */ mHeapAllocator_c mAllocator;
    /* 0x84 */ UNKWORD field_0x84;
    /* 0x88 */ u8 field_0x88;
};

#endif