mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
15 lines
206 B
C++
15 lines
206 B
C++
#ifndef D_T_EFFECT_GEN_H
|
|
#define D_T_EFFECT_GEN_H
|
|
|
|
#include "d/a/d_a_base.h"
|
|
|
|
class dTgEffectGen_c : public dAcBase_c {
|
|
public:
|
|
dTgEffectGen_c() {}
|
|
virtual ~dTgEffectGen_c() {}
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|