mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
19 lines
297 B
C++
19 lines
297 B
C++
#ifndef LEVEL_STAT_DATA_H
|
|
#define LEVEL_STAT_DATA_H
|
|
|
|
#include "core/resource.h"
|
|
|
|
#include "stat.h"
|
|
|
|
class LevelStatData : public Resource {
|
|
GDCLASS(LevelStatData, Resource);
|
|
|
|
public:
|
|
int get_stat_diff(int stat, int old_level, int new_level);
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif
|