19 lines
259 B
C
19 lines
259 B
C
|
|
#ifndef EFFECTTABLE_H
|
||
|
|
#define EFFECTTABLE_H
|
||
|
|
|
||
|
|
#include "effectdef.h"
|
||
|
|
|
||
|
|
struct FxImpactEntry
|
||
|
|
{
|
||
|
|
const EffectDef *nonflesh[29];
|
||
|
|
const EffectDef *flesh[4];
|
||
|
|
};
|
||
|
|
|
||
|
|
struct ImpactTable
|
||
|
|
{
|
||
|
|
const char *name;
|
||
|
|
FxImpactEntry *table;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // EFFECTTABLE_H
|