Files
ss/include/d/t/d_t_map_inst.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

20 lines
345 B
C++

#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