pitrix/include/EffectEntry.h

12 lines
148 B
C
Raw Normal View History

#ifndef EffectEntry_H
#define EffectEntry_H
#include "Effect.h"
typedef struct {
2019-06-07 04:24:16 +00:00
const char* name;
Effect* effect;
} EffectEntry;
#endif