Files
ss/include/d/t/d_t_light_shaft_eff.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

18 lines
357 B
C++

#ifndef D_T_LIGHT_SHAFT_EFF_H
#define D_T_LIGHT_SHAFT_EFF_H
#include "d/t/d_tg.h"
class dTgLightShaftEff_c : public dTg_c {
public:
dTgLightShaftEff_c() {}
virtual ~dTgLightShaftEff_c() {}
virtual int create() override;
virtual int doDelete() override;
virtual int actorExecute() override;
virtual int draw() override;
};
#endif