summaryrefslogtreecommitdiff
path: root/include/d/t/d_t_map_inst.h
blob: c33ac9fd53054a5b08f331270bd7231cb08dd2cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef D_T_MAP_INST_H
#define D_T_MAP_INST_H

#include "d/t/d_tg.h"

class dTgMapInst_c : public dTg_c {
public:
    dTgMapInst_c() {}
    virtual ~dTgMapInst_c() {}

    virtual int create() override;
    virtual int doDelete() override;
    virtual int actorExecute() override;
    virtual int draw() override;

    u8 field_0xfc;
};

#endif