mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
13 lines
227 B
C++
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
|