mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-05-17 23:03:26 +02:00
14 lines
146 B
C++
14 lines
146 B
C++
#ifndef BS_CONSTANTS_H
|
|
#define BS_CONSTANTS_H
|
|
|
|
|
|
class BSConstants
|
|
{
|
|
public:
|
|
static int MAX_LEVEL = 50;
|
|
public:
|
|
BSConstants() {}
|
|
};
|
|
|
|
#endif
|