entity_spell_system/data/spell_data_constants.h
2019-04-20 14:02:55 +02:00

13 lines
227 B
C++

#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