entity_spell_system/data/spell_data_constants.h

13 lines
227 B
C
Raw Normal View History

2019-04-20 14:02:55 +02:00
#ifndef SPELL_DATA_CONSTANTS_H
#define SPELL_DATA_CONSTANTS_H
class SpellDataConstants
{
public:
static int SPELL_ICON_SIZE = 16;
static float ICEARCHER_ARROW_MIN_RANGE = (float) 15;
SpellDataConstants() {}
};
#endif